├── .devcontainer ├── codespace-setup.sh ├── devcontainer.json ├── on-start.sh ├── splash.md └── troubleshooting.md ├── .github ├── actions │ └── gmt-pytest │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── build-codespace-container.yml │ ├── tests-bare-metal-main.yml │ ├── tests-eco-ci-energy-estimation.yaml │ ├── tests-vm-mac.yml │ ├── tests-vm-main.yml │ ├── tests-vm-pr.yml │ └── website-tester.yml ├── .gitignore ├── .gitmodules ├── .pylintrc ├── CITATION.cff ├── CONTRIBUTING.md ├── DECLARATIONS.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api ├── api_helpers.py ├── carbondb.py ├── eco_ci.py ├── main.py ├── object_specifications.py ├── power_hog.py └── scenario_runner.py ├── api_test.py ├── config.yml.example ├── cron ├── README.md ├── carbondb_compress.py ├── carbondb_copy_over_and_remove_duplicates.py ├── check_jobs_queue.py ├── check_unresolved_status.py ├── client.py ├── jobs.py └── watchlist.py ├── data ├── README.md └── demo_data.sql ├── docker ├── Dockerfile-gunicorn ├── auxiliary-containers │ ├── build-containers.sh │ ├── gcb_playwright │ │ └── Dockerfile │ └── squid_reverse_proxy │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── squid.conf.intercept-cache │ │ ├── tls-ca.crt │ │ └── tls-ca.key ├── compose.yml.example ├── docker-compose-cache.json ├── nginx │ ├── api.conf.example │ ├── block-and-redirect.conf.example │ ├── frontend.conf.example │ ├── nginx.conf │ └── ssl │ │ └── README.md ├── requirements.txt ├── startup_gunicorn.sh └── structure.sql ├── frontend ├── authentication.html ├── carbondb.html ├── ci-index.html ├── ci.html ├── cluster-changelog.html ├── cluster-status-history.html ├── cluster-status.html ├── compare.html ├── css │ └── green-coding.css ├── data-analysis.html ├── dist │ ├── css │ │ ├── datatables.min.css │ │ ├── diff2html.min.css │ │ └── semantic_reduced.min.css │ ├── js │ │ ├── accordion.min.js │ │ ├── api.min.js │ │ ├── calendar.min.js │ │ ├── checkbox.min.js │ │ ├── datatables.min.js │ │ ├── diff2html-ui.min.js │ │ ├── dimmer.min.js │ │ ├── dropdown.min.js │ │ ├── echarts.min.js │ │ ├── embed.min.js │ │ ├── flyout.min.js │ │ ├── form.min.js │ │ ├── jquery.min.js │ │ ├── json2yaml.js │ │ ├── modal.min.js │ │ ├── nag.min.js │ │ ├── popup.min.js │ │ ├── progress.min.js │ │ ├── rating.min.js │ │ ├── search.min.js │ │ ├── shape.min.js │ │ ├── sidebar.min.js │ │ ├── site.min.js │ │ ├── slider.min.js │ │ ├── state.min.js │ │ ├── sticky.min.js │ │ ├── tab.min.js │ │ ├── tablesort.min.js │ │ ├── toast.min.js │ │ ├── transition.min.js │ │ └── visibility.min.js │ └── themes │ │ └── default │ │ └── assets │ │ └── fonts │ │ ├── brand-icons.woff │ │ ├── brand-icons.woff2 │ │ ├── icons.woff │ │ ├── icons.woff2 │ │ ├── outline-icons.woff │ │ └── outline-icons.woff2 ├── favicon.ico ├── hog-details.html ├── hog.html ├── images │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── green-coding-menu-logo-2x.webp │ ├── green-coding-menu-logo.webp │ ├── image-vs-static-site.webp │ ├── logo.png │ ├── no-data-badge.webp │ ├── noncompliant.png │ └── placeholder.webp ├── index.html ├── js │ ├── authentication.js │ ├── carbondb.js │ ├── ci-index.js │ ├── ci.js │ ├── cluster-changelog.js │ ├── cluster-status-history.js │ ├── cluster-status.js │ ├── compare.js │ ├── helpers │ │ ├── charts.js │ │ ├── config.js.example │ │ ├── converters.js │ │ ├── main.js │ │ ├── metric-boxes.js │ │ ├── phase-stats.js │ │ └── runs.js │ ├── hog-details.js │ ├── hog.js │ ├── index.js │ ├── request.js │ ├── settings.js │ ├── stats.js │ ├── timeline.js │ └── watchlist.js ├── request.html ├── runs.html ├── settings.html ├── stats.html ├── timeline.html └── watchlist.html ├── install_linux.sh ├── install_mac.sh ├── lib ├── README.md ├── c │ ├── Makefile │ ├── gmt-container-lib.c │ ├── gmt-container-lib.h │ ├── gmt-lib.c │ └── gmt-lib.h ├── configuration_check_error.py ├── container_compatibility.py ├── db.py ├── debug_helper.py ├── diff.py ├── email_helpers.py ├── error_helpers.py ├── global_config.py ├── hardware_info.py ├── hardware_info_root_original.py ├── install_shared.sh ├── job │ ├── base.py │ ├── email.py │ └── run.py ├── log_types.py ├── machine.py ├── metric_importer.py ├── notes.py ├── phase_stats.py ├── process_helpers.py ├── repo_info.py ├── scenario_runner.py ├── schema_checker.py ├── secure_variable.py ├── system_checks.py ├── temperature.py ├── terminal_colors.py ├── user.py ├── utils.py ├── validate.py ├── venv_checker.py └── watchlist.py ├── metric_providers ├── base.py ├── cgroup.py ├── container.py ├── cpu │ ├── energy │ │ └── rapl │ │ │ └── msr │ │ │ └── component │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ ├── frequency │ │ └── sysfs │ │ │ └── core │ │ │ ├── README.md │ │ │ ├── get-scaling-cur-freq.sh │ │ │ └── provider.py │ ├── throttling │ │ └── msr │ │ │ └── component │ │ │ ├── Makefile │ │ │ ├── provider.py │ │ │ └── source.c │ ├── time │ │ ├── cgroup │ │ │ ├── container │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── provider.py │ │ │ │ └── source.c │ │ │ └── system │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── provider.py │ │ │ │ └── source.c │ │ └── procfs │ │ │ └── system │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ └── utilization │ │ ├── cgroup │ │ ├── container │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ └── system │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ ├── mach │ │ └── system │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ └── procfs │ │ └── system │ │ ├── Makefile │ │ ├── README.md │ │ ├── provider.py │ │ └── source.c ├── disk │ ├── io │ │ ├── cgroup │ │ │ ├── container │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── provider.py │ │ │ │ └── source.c │ │ │ └── system │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── provider.py │ │ │ │ └── source.c │ │ ├── disk_io_parse.py │ │ └── procfs │ │ │ └── system │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ └── used │ │ └── statvfs │ │ └── system │ │ ├── Makefile │ │ ├── README.md │ │ ├── provider.py │ │ └── source.c ├── gpu │ └── energy │ │ └── nvidia │ │ └── nvml │ │ └── component │ │ ├── Makefile │ │ ├── README.md │ │ ├── provider.py │ │ └── source.c ├── lmsensors │ ├── CPPLINT.cfg │ ├── Makefile │ ├── README.md │ ├── abstract_provider.py │ ├── chips.c │ ├── chips.h │ ├── fan │ │ └── component │ │ │ └── provider.py │ ├── source.c │ ├── source.h │ └── temperature │ │ └── component │ │ └── provider.py ├── memory │ ├── energy │ │ └── rapl │ │ │ └── msr │ │ │ └── component │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ └── used │ │ ├── cgroup │ │ ├── container │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ └── system │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ └── procfs │ │ └── system │ │ ├── Makefile │ │ ├── README.md │ │ ├── provider.py │ │ └── source.c ├── network │ ├── connections │ │ ├── proxy │ │ │ └── container │ │ │ │ ├── README.md │ │ │ │ ├── provider.py │ │ │ │ └── proxy_conf.conf │ │ └── tcpdump │ │ │ └── system │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── tcpdump.sh │ └── io │ │ ├── cgroup │ │ ├── container │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ └── system │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── provider.py │ │ │ └── source.c │ │ └── procfs │ │ └── system │ │ ├── Makefile │ │ ├── README.md │ │ ├── provider.py │ │ └── source.c ├── powermetrics │ └── provider.py └── psu │ └── energy │ ├── ac │ ├── gude │ │ └── machine │ │ │ ├── README.md │ │ │ ├── check_gude_modified.py │ │ │ └── provider.py │ ├── ipmi │ │ └── machine │ │ │ ├── README.md │ │ │ ├── ipmi-get-machine-energy-stat.sh │ │ │ └── provider.py │ ├── mcp │ │ └── machine │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_com.h │ │ │ ├── provider.py │ │ │ └── source.c │ ├── powerspy2 │ │ └── machine │ │ │ ├── README.md │ │ │ ├── metric-provider.py │ │ │ ├── powerspy2.py │ │ │ └── provider.py │ ├── sdia │ │ └── machine │ │ │ ├── README.md │ │ │ └── provider.py │ └── xgboost │ │ └── machine │ │ ├── README.md │ │ └── provider.py │ └── dc │ └── rapl │ └── msr │ └── machine │ ├── Makefile │ ├── README.md │ ├── provider.py │ └── source.c ├── migrations ├── 2024_01_04_machines_status.sql ├── 2024_01_05_base_temperature.sql ├── 2024_01_12_configuration.sql ├── 2024_03_04_optimizations.sql ├── 2024_03_19_failed.sql ├── 2024_03_23_eco-ci-performance-fix.sql ├── 2024_04_11_eco-ci-co2.sql ├── 2024_04_13_error_handling.sql ├── 2024_08_22_authentication.sql ├── 2024_10_17_ci_measurements_v2.sql ├── 2024_10_18_timeline_projects_last_marker.sql ├── 2024_12_17_user_zero.sql ├── 2024_12_24_measurement_table_split.sql ├── 2025_03_22_projects_to_watchlist.sql ├── 2025_03_24_watchlist_images.sql ├── 2025_03_26_user_settings_dashboard.sql ├── 2025_04_11_eco_ci_note.sql ├── 2025_05_01_usage_scearion_variables.sql ├── 2025_05_13_user_settings_dashboard.sql ├── 2025_05_14_jobs_schedule_modes.sql ├── 2025_05_18_phase_padding.sql ├── 2025_05_29_job_cancel.sql ├── 2025_06_14_changelog.sql ├── 2025_07_31_warnings.sql ├── 2025_08_01_more_measurement_user_settings.sql ├── 2025_08_17_dependency_resolver.sql ├── 2025_09_16_logs_text_to_jsonb.sql ├── 2025_09_20_cluster_health.sql ├── 2025_09_28_drop_db_unique.sql ├── 2025_10_16_phase_stats_hidden.sql ├── 2025_10_16_remove_sampling_rate_configured.sql ├── 2025_11_20_CarbonDB_and_PowerHOG_public_routes.sql ├── 2025_11_22_add_fields_to_ci_measurements.sql ├── 2025_12_04_archive_and_note_and_public.sql ├── 2025_12_06_carbondb_allow_null_for_grid_intensity.sql └── client_status_2022_02_02.sql ├── optimization_providers ├── base.py ├── durations │ └── container.py ├── example │ └── example_optimization.py └── resources │ └── utilization.py ├── requirements-dev.txt ├── requirements.txt ├── run-template.sh ├── runner.py ├── templates ├── ai │ ├── usage_scenario.yml │ └── usage_scenario_gpu.yml ├── partials │ ├── gmt-playwright-ipc-v1.0.0.js │ ├── gmt-playwright-ipc-v1.1.0.js │ ├── gmt-playwright-v1.0.0.yml │ ├── gmt-playwright-v1.1.0.yml │ ├── gmt-playwright-with-cache-v1.0.0.yml │ └── gmt-playwright-with-cache-v1.1.0.yml └── website │ ├── README.md │ ├── usage_scenario.yml │ ├── usage_scenario_cached.yml │ └── usage_scenario_cached_debug.yml ├── tests ├── .coveragerc ├── README.MD ├── api │ ├── test_api_base.py │ ├── test_api_carbondb.py │ ├── test_api_eco_ci.py │ ├── test_api_helpers.py │ ├── test_api_hog.py │ ├── test_api_scenario_runner.py │ └── test_api_software_add.py ├── bisect-script.sh ├── conftest.py ├── cron │ ├── test_carbondb_compress.py │ ├── test_client.py │ ├── test_jobs.py │ └── test_watchlist.py ├── data │ ├── bare-metal │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── usage_scenario.yml │ │ └── usage_scenario_enterprise.yml │ ├── entrypoint-application │ │ ├── Dockerfile │ │ └── entrypoint-overwrite.sh │ ├── json │ │ ├── compare-f4ed967e-7c27-4055-815f-ea437fc11d25,3e6554a4-10bc-46d6-93a1-e61bfd1d9808.json │ │ ├── compare-f4ed967e-7c27-4055-815f-ea437fc11d25,a416057b-235f-41d8-9fb8-9bcc70a308e7-machines.json │ │ ├── compare-f4ed967e-7c27-4055-815f-ea437fc11d25,a416057b-235f-41d8-9fb8-9bcc70a308e7.json │ │ └── compare-f4ed967e-7c27-4055-815f-ea437fc11d25,f6167993-260e-41db-ab72-d9c3832f211d.json │ ├── metrics │ │ ├── README.md │ │ ├── cpu_energy_rapl_msr_component.log │ │ ├── cpu_energy_rapl_msr_component_single_measurement.log │ │ ├── cpu_energy_rapl_msr_component_underflow.log │ │ ├── cpu_utilization_cgroup_container.log │ │ ├── cpu_utilization_cgroup_container_non_unique.log │ │ ├── cpu_utilization_cgroup_system.log │ │ ├── cpu_utilization_mach_system.log │ │ ├── cpu_utilization_procfs_system.log │ │ ├── memory_used_cgroup_container.log │ │ ├── network_connections_proxy_container_dockerproxy.log │ │ ├── network_connections_tcpdump_system_linux.log │ │ ├── network_connections_tcpdump_system_macos.log │ │ ├── network_io_cgroup_container.log │ │ ├── network_io_procfs_system.log │ │ ├── network_io_procfs_system_in_hidden_phase.log │ │ ├── network_io_procfs_system_non_monotonic.log │ │ ├── network_io_procfs_system_single_measurement.log │ │ ├── network_io_procfs_system_two_measurements.log │ │ ├── network_io_procfs_system_two_measurements_at_phase_border_in.log │ │ ├── network_io_procfs_system_two_measurements_at_phase_border_out.log │ │ ├── powermetrics.log │ │ └── psu_energy_ac_mcp_machine.log │ ├── mounts │ │ └── test-file │ ├── slow-start-application │ │ ├── Dockerfile │ │ └── start.sh │ ├── stress-application │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── compose.yml │ │ └── usage_scenario.yml │ ├── tmp │ │ └── README.md │ ├── usage_scenarios │ │ ├── basic_stress.yml │ │ ├── basic_stress_with_limits.yml │ │ ├── basic_stress_with_variables.yml │ │ ├── capture_logs.yml │ │ ├── capture_logs_with_invalid_character.yml │ │ ├── capture_logs_with_null_bytes.yml │ │ ├── cmd_stress.yml │ │ ├── compose.yml │ │ ├── compose_restart_key.yml │ │ ├── container_early_exit.yml │ │ ├── container_immediate_exit_with_error.yml │ │ ├── dependency_collection.yml │ │ ├── depends_on.yml │ │ ├── depends_on_custom_container_name.yml │ │ ├── depends_on_error_cycle.yml │ │ ├── depends_on_error_not_running.yml │ │ ├── depends_on_error_unsupported_condition.yml │ │ ├── depends_on_huge.yml │ │ ├── depends_on_long_form.yml │ │ ├── docker_arg_bad.yml │ │ ├── docker_arg_good.yml │ │ ├── docker_pull_amd64_image.yml │ │ ├── docker_pull_arm64_image.yml │ │ ├── docker_pull_multiarch_image.yml │ │ ├── docker_pull_nonexistent.yml │ │ ├── docker_run_multiarch_image_amd64_digest.yml │ │ ├── docker_run_multiarch_image_arm64_digest.yml │ │ ├── duplicate_container_name.yml │ │ ├── duplicate_phase_name.yml │ │ ├── empty_container_name.yml │ │ ├── empty_phase_name.yml │ │ ├── entrypoint_empty.yml │ │ ├── entrypoint_script.yml │ │ ├── entrypoint_with_command.yml │ │ ├── env_vars_stress_allowed.yml │ │ ├── env_vars_stress_forbidden.yml │ │ ├── folder_destination_basic.yml │ │ ├── folder_destination_with_build.yml │ │ ├── healthcheck_error_container_unhealthy.yml │ │ ├── healthcheck_error_max_waiting_time.yml │ │ ├── healthcheck_error_missing.yml │ │ ├── healthcheck_missing_start_period.yml │ │ ├── healthcheck_using_interval.yml │ │ ├── healthcheck_using_start_interval.yml │ │ ├── import_error.yml │ │ ├── import_one_flow.yml │ │ ├── import_one_root.yml │ │ ├── import_one_services.yml │ │ ├── import_two_compose.yml │ │ ├── import_two_root.yml │ │ ├── include_example.yml │ │ ├── internal_network.yml │ │ ├── invalid_container_name.yml │ │ ├── invalid_container_name_2.yml │ │ ├── invalid_image.yml │ │ ├── invalid_phase_name.yml │ │ ├── invalid_phase_name_runtime.yml │ │ ├── labels_stress_allowed.yml │ │ ├── labels_stress_forbidden.yml │ │ ├── metric_providers_data.yml │ │ ├── network_alias.yml │ │ ├── network_host_create.yml │ │ ├── network_host_join.yml │ │ ├── network_stress.yml │ │ ├── none_container_name.yml │ │ ├── noop.yml │ │ ├── overwrite_string_from_include.yml │ │ ├── overwrite_string_from_include_even_if_top.yml │ │ ├── parentdir_compose_include │ │ │ ├── compose.yml │ │ │ └── subdir │ │ │ │ └── usage_scenario_fail.yml │ │ ├── port_bindings_stress.yml │ │ ├── resource_limits_cpu_none.yml │ │ ├── resource_limits_disalign_cpu.yml │ │ ├── resource_limits_disalign_memory.yml │ │ ├── resource_limits_good.yml │ │ ├── resource_limits_memory_float.yml │ │ ├── resource_limits_memory_none.yml │ │ ├── resource_limits_shm_good.yml │ │ ├── resource_limits_too_high.yml │ │ ├── runner_filename │ │ │ ├── basic_stress_1.yml │ │ │ └── basic_stress_2.yml │ │ ├── schema_checker │ │ │ ├── schema_checker_invalid_image_builds.yml │ │ │ ├── schema_checker_invalid_missing_description.yml │ │ │ ├── schema_checker_invalid_network_alias.yml │ │ │ ├── schema_checker_invalid_wrong_type.yml │ │ │ ├── schema_checker_valid.yml │ │ │ ├── schema_checker_valid_labels_as_dict.yml │ │ │ ├── schema_checker_valid_labels_as_list.yml │ │ │ ├── schema_checker_valid_network_alias.yml │ │ │ ├── schema_checker_valid_network_as_keys.yml │ │ │ └── schema_checker_valid_network_as_list.yml │ │ ├── setup_commands_multiple_noop.yml │ │ ├── setup_commands_noop.yml │ │ ├── skip_unsupported_compose.yml │ │ ├── stress_detached_exit.yml │ │ ├── stress_detached_failure.yml │ │ ├── stress_detached_no_exit.yml │ │ ├── stress_sci.yml │ │ ├── stress_sci_multi.yml │ │ ├── stress_with_named_volume.yml │ │ ├── subdir_parent_context │ │ │ ├── Dockerfile │ │ │ └── subdir │ │ │ │ ├── usage_scenario_fail.yml │ │ │ │ └── usage_scenario_ok.yml │ │ ├── subdir_volume_loading │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── compose.yaml │ │ │ ├── subdir │ │ │ │ ├── Dockerfile │ │ │ │ ├── subdir2 │ │ │ │ │ ├── Dockerfile2 │ │ │ │ │ ├── subdir3 │ │ │ │ │ │ ├── Dockerfile3 │ │ │ │ │ │ ├── subdir4 │ │ │ │ │ │ │ └── testfile4 │ │ │ │ │ │ └── testfile3 │ │ │ │ │ ├── testfile2 │ │ │ │ │ └── usage_scenario_subdir2.yml │ │ │ │ ├── testfile │ │ │ │ └── usage_scenario_subdir.yml │ │ │ ├── testfile-root │ │ │ └── usage_scenario.yml │ │ ├── test_docker_compose_entrypoint.yml │ │ ├── test_docker_entry_command.yml │ │ ├── unsupported_compose.yml │ │ ├── volume_bindings_stress.yml │ │ ├── volume_load_etc_hosts.yml │ │ ├── volume_load_non_bind_mounts.yml │ │ ├── volume_load_references.yml │ │ ├── volume_load_symlinks_negative.yml │ │ └── volume_load_within_proj.yml │ └── web-application │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── docker-compose.yml │ │ ├── manage.py │ │ ├── requirements.txt │ │ ├── testproject │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── usage_scenario.yml ├── edit-etc-hosts.sh ├── frontend │ ├── test_frontend.py │ └── test_frontend_carbondb.py ├── lib │ ├── test_container_compatibility.py │ ├── test_db.py │ ├── test_diff.py │ ├── test_email_helpers.py │ ├── test_metric_importer.py │ ├── test_phase_stats.py │ ├── test_save_notes.py │ ├── test_schema_checker.py │ └── test_user.py ├── metric_providers │ ├── test_metric_provider_functions.py │ └── test_metric_providers.py ├── run-tests.sh ├── setup-test-env.py ├── smoke_test.py ├── start-test-containers.sh ├── stop-test-containers.sh ├── test-config-extra-network-and-duplicate-psu-providers.yml ├── test-config.yml.example ├── test_config_opts.py ├── test_dependency_collection.py ├── test_functions.py ├── test_internal_sanity.py ├── test_resource_limits.py ├── test_runner.py ├── test_usage_scenario.py ├── test_volume_loading.py └── test_yml_parsing.py ├── tools ├── README.md ├── calibrate.py ├── cluster │ └── cleanup_original.py ├── dc_converter.py ├── import_backup.sh ├── import_data.py ├── import_measurements.py ├── kill_gmt.sh ├── optimization.py ├── phase_stats.py ├── prune_db.py ├── rebuild_carbondb.py ├── rebuild_phase_stats.py ├── time-read.c └── update_commit_data.py └── uninstall.sh /.devcontainer/codespace-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.devcontainer/codespace-setup.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/on-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.devcontainer/on-start.sh -------------------------------------------------------------------------------- /.devcontainer/splash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.devcontainer/splash.md -------------------------------------------------------------------------------- /.devcontainer/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.devcontainer/troubleshooting.md -------------------------------------------------------------------------------- /.github/actions/gmt-pytest/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/actions/gmt-pytest/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-codespace-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/build-codespace-container.yml -------------------------------------------------------------------------------- /.github/workflows/tests-bare-metal-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/tests-bare-metal-main.yml -------------------------------------------------------------------------------- /.github/workflows/tests-eco-ci-energy-estimation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/tests-eco-ci-energy-estimation.yaml -------------------------------------------------------------------------------- /.github/workflows/tests-vm-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/tests-vm-mac.yml -------------------------------------------------------------------------------- /.github/workflows/tests-vm-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/tests-vm-main.yml -------------------------------------------------------------------------------- /.github/workflows/tests-vm-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/tests-vm-pr.yml -------------------------------------------------------------------------------- /.github/workflows/website-tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.github/workflows/website-tester.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/.pylintrc -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DECLARATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/DECLARATIONS.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api/api_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/api_helpers.py -------------------------------------------------------------------------------- /api/carbondb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/carbondb.py -------------------------------------------------------------------------------- /api/eco_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/eco_ci.py -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/main.py -------------------------------------------------------------------------------- /api/object_specifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/object_specifications.py -------------------------------------------------------------------------------- /api/power_hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/power_hog.py -------------------------------------------------------------------------------- /api/scenario_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api/scenario_runner.py -------------------------------------------------------------------------------- /api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/api_test.py -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/config.yml.example -------------------------------------------------------------------------------- /cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/README.md -------------------------------------------------------------------------------- /cron/carbondb_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/carbondb_compress.py -------------------------------------------------------------------------------- /cron/carbondb_copy_over_and_remove_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/carbondb_copy_over_and_remove_duplicates.py -------------------------------------------------------------------------------- /cron/check_jobs_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/check_jobs_queue.py -------------------------------------------------------------------------------- /cron/check_unresolved_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/check_unresolved_status.py -------------------------------------------------------------------------------- /cron/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/client.py -------------------------------------------------------------------------------- /cron/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/jobs.py -------------------------------------------------------------------------------- /cron/watchlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/cron/watchlist.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/data/README.md -------------------------------------------------------------------------------- /data/demo_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/data/demo_data.sql -------------------------------------------------------------------------------- /docker/Dockerfile-gunicorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/Dockerfile-gunicorn -------------------------------------------------------------------------------- /docker/auxiliary-containers/build-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/build-containers.sh -------------------------------------------------------------------------------- /docker/auxiliary-containers/gcb_playwright/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/gcb_playwright/Dockerfile -------------------------------------------------------------------------------- /docker/auxiliary-containers/squid_reverse_proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/squid_reverse_proxy/Dockerfile -------------------------------------------------------------------------------- /docker/auxiliary-containers/squid_reverse_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/squid_reverse_proxy/README.md -------------------------------------------------------------------------------- /docker/auxiliary-containers/squid_reverse_proxy/squid.conf.intercept-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/squid_reverse_proxy/squid.conf.intercept-cache -------------------------------------------------------------------------------- /docker/auxiliary-containers/squid_reverse_proxy/tls-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/squid_reverse_proxy/tls-ca.crt -------------------------------------------------------------------------------- /docker/auxiliary-containers/squid_reverse_proxy/tls-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/auxiliary-containers/squid_reverse_proxy/tls-ca.key -------------------------------------------------------------------------------- /docker/compose.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/compose.yml.example -------------------------------------------------------------------------------- /docker/docker-compose-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/docker-compose-cache.json -------------------------------------------------------------------------------- /docker/nginx/api.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/nginx/api.conf.example -------------------------------------------------------------------------------- /docker/nginx/block-and-redirect.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/nginx/block-and-redirect.conf.example -------------------------------------------------------------------------------- /docker/nginx/frontend.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/nginx/frontend.conf.example -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/nginx/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/nginx/ssl/README.md -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/requirements.txt -------------------------------------------------------------------------------- /docker/startup_gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/startup_gunicorn.sh -------------------------------------------------------------------------------- /docker/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/docker/structure.sql -------------------------------------------------------------------------------- /frontend/authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/authentication.html -------------------------------------------------------------------------------- /frontend/carbondb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/carbondb.html -------------------------------------------------------------------------------- /frontend/ci-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/ci-index.html -------------------------------------------------------------------------------- /frontend/ci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/ci.html -------------------------------------------------------------------------------- /frontend/cluster-changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/cluster-changelog.html -------------------------------------------------------------------------------- /frontend/cluster-status-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/cluster-status-history.html -------------------------------------------------------------------------------- /frontend/cluster-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/cluster-status.html -------------------------------------------------------------------------------- /frontend/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/compare.html -------------------------------------------------------------------------------- /frontend/css/green-coding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/css/green-coding.css -------------------------------------------------------------------------------- /frontend/data-analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/data-analysis.html -------------------------------------------------------------------------------- /frontend/dist/css/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/css/datatables.min.css -------------------------------------------------------------------------------- /frontend/dist/css/diff2html.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/css/diff2html.min.css -------------------------------------------------------------------------------- /frontend/dist/css/semantic_reduced.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/css/semantic_reduced.min.css -------------------------------------------------------------------------------- /frontend/dist/js/accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/accordion.min.js -------------------------------------------------------------------------------- /frontend/dist/js/api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/api.min.js -------------------------------------------------------------------------------- /frontend/dist/js/calendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/calendar.min.js -------------------------------------------------------------------------------- /frontend/dist/js/checkbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/checkbox.min.js -------------------------------------------------------------------------------- /frontend/dist/js/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/datatables.min.js -------------------------------------------------------------------------------- /frontend/dist/js/diff2html-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/diff2html-ui.min.js -------------------------------------------------------------------------------- /frontend/dist/js/dimmer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/dimmer.min.js -------------------------------------------------------------------------------- /frontend/dist/js/dropdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/dropdown.min.js -------------------------------------------------------------------------------- /frontend/dist/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/echarts.min.js -------------------------------------------------------------------------------- /frontend/dist/js/embed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/embed.min.js -------------------------------------------------------------------------------- /frontend/dist/js/flyout.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/flyout.min.js -------------------------------------------------------------------------------- /frontend/dist/js/form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/form.min.js -------------------------------------------------------------------------------- /frontend/dist/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/jquery.min.js -------------------------------------------------------------------------------- /frontend/dist/js/json2yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/json2yaml.js -------------------------------------------------------------------------------- /frontend/dist/js/modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/modal.min.js -------------------------------------------------------------------------------- /frontend/dist/js/nag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/nag.min.js -------------------------------------------------------------------------------- /frontend/dist/js/popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/popup.min.js -------------------------------------------------------------------------------- /frontend/dist/js/progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/progress.min.js -------------------------------------------------------------------------------- /frontend/dist/js/rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/rating.min.js -------------------------------------------------------------------------------- /frontend/dist/js/search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/search.min.js -------------------------------------------------------------------------------- /frontend/dist/js/shape.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/shape.min.js -------------------------------------------------------------------------------- /frontend/dist/js/sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/sidebar.min.js -------------------------------------------------------------------------------- /frontend/dist/js/site.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/site.min.js -------------------------------------------------------------------------------- /frontend/dist/js/slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/slider.min.js -------------------------------------------------------------------------------- /frontend/dist/js/state.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/state.min.js -------------------------------------------------------------------------------- /frontend/dist/js/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/sticky.min.js -------------------------------------------------------------------------------- /frontend/dist/js/tab.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/tab.min.js -------------------------------------------------------------------------------- /frontend/dist/js/tablesort.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/tablesort.min.js -------------------------------------------------------------------------------- /frontend/dist/js/toast.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/toast.min.js -------------------------------------------------------------------------------- /frontend/dist/js/transition.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/transition.min.js -------------------------------------------------------------------------------- /frontend/dist/js/visibility.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/js/visibility.min.js -------------------------------------------------------------------------------- /frontend/dist/themes/default/assets/fonts/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/themes/default/assets/fonts/brand-icons.woff -------------------------------------------------------------------------------- /frontend/dist/themes/default/assets/fonts/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/themes/default/assets/fonts/brand-icons.woff2 -------------------------------------------------------------------------------- /frontend/dist/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /frontend/dist/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /frontend/dist/themes/default/assets/fonts/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/themes/default/assets/fonts/outline-icons.woff -------------------------------------------------------------------------------- /frontend/dist/themes/default/assets/fonts/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/dist/themes/default/assets/fonts/outline-icons.woff2 -------------------------------------------------------------------------------- /frontend/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/favicon.ico -------------------------------------------------------------------------------- /frontend/hog-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/hog-details.html -------------------------------------------------------------------------------- /frontend/hog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/hog.html -------------------------------------------------------------------------------- /frontend/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/favicon.ico -------------------------------------------------------------------------------- /frontend/images/green-coding-menu-logo-2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/green-coding-menu-logo-2x.webp -------------------------------------------------------------------------------- /frontend/images/green-coding-menu-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/green-coding-menu-logo.webp -------------------------------------------------------------------------------- /frontend/images/image-vs-static-site.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/image-vs-static-site.webp -------------------------------------------------------------------------------- /frontend/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/logo.png -------------------------------------------------------------------------------- /frontend/images/no-data-badge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/no-data-badge.webp -------------------------------------------------------------------------------- /frontend/images/noncompliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/noncompliant.png -------------------------------------------------------------------------------- /frontend/images/placeholder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/images/placeholder.webp -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/js/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/authentication.js -------------------------------------------------------------------------------- /frontend/js/carbondb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/carbondb.js -------------------------------------------------------------------------------- /frontend/js/ci-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/ci-index.js -------------------------------------------------------------------------------- /frontend/js/ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/ci.js -------------------------------------------------------------------------------- /frontend/js/cluster-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/cluster-changelog.js -------------------------------------------------------------------------------- /frontend/js/cluster-status-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/cluster-status-history.js -------------------------------------------------------------------------------- /frontend/js/cluster-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/cluster-status.js -------------------------------------------------------------------------------- /frontend/js/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/compare.js -------------------------------------------------------------------------------- /frontend/js/helpers/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/charts.js -------------------------------------------------------------------------------- /frontend/js/helpers/config.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/config.js.example -------------------------------------------------------------------------------- /frontend/js/helpers/converters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/converters.js -------------------------------------------------------------------------------- /frontend/js/helpers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/main.js -------------------------------------------------------------------------------- /frontend/js/helpers/metric-boxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/metric-boxes.js -------------------------------------------------------------------------------- /frontend/js/helpers/phase-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/phase-stats.js -------------------------------------------------------------------------------- /frontend/js/helpers/runs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/helpers/runs.js -------------------------------------------------------------------------------- /frontend/js/hog-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/hog-details.js -------------------------------------------------------------------------------- /frontend/js/hog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/hog.js -------------------------------------------------------------------------------- /frontend/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/index.js -------------------------------------------------------------------------------- /frontend/js/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/request.js -------------------------------------------------------------------------------- /frontend/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/settings.js -------------------------------------------------------------------------------- /frontend/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/stats.js -------------------------------------------------------------------------------- /frontend/js/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/timeline.js -------------------------------------------------------------------------------- /frontend/js/watchlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/js/watchlist.js -------------------------------------------------------------------------------- /frontend/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/request.html -------------------------------------------------------------------------------- /frontend/runs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/runs.html -------------------------------------------------------------------------------- /frontend/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/settings.html -------------------------------------------------------------------------------- /frontend/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/stats.html -------------------------------------------------------------------------------- /frontend/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/timeline.html -------------------------------------------------------------------------------- /frontend/watchlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/frontend/watchlist.html -------------------------------------------------------------------------------- /install_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/install_linux.sh -------------------------------------------------------------------------------- /install_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/install_mac.sh -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/c/Makefile -------------------------------------------------------------------------------- /lib/c/gmt-container-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/c/gmt-container-lib.c -------------------------------------------------------------------------------- /lib/c/gmt-container-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/c/gmt-container-lib.h -------------------------------------------------------------------------------- /lib/c/gmt-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/c/gmt-lib.c -------------------------------------------------------------------------------- /lib/c/gmt-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/c/gmt-lib.h -------------------------------------------------------------------------------- /lib/configuration_check_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/configuration_check_error.py -------------------------------------------------------------------------------- /lib/container_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/container_compatibility.py -------------------------------------------------------------------------------- /lib/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/db.py -------------------------------------------------------------------------------- /lib/debug_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/debug_helper.py -------------------------------------------------------------------------------- /lib/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/diff.py -------------------------------------------------------------------------------- /lib/email_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/email_helpers.py -------------------------------------------------------------------------------- /lib/error_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/error_helpers.py -------------------------------------------------------------------------------- /lib/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/global_config.py -------------------------------------------------------------------------------- /lib/hardware_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/hardware_info.py -------------------------------------------------------------------------------- /lib/hardware_info_root_original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/hardware_info_root_original.py -------------------------------------------------------------------------------- /lib/install_shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/install_shared.sh -------------------------------------------------------------------------------- /lib/job/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/job/base.py -------------------------------------------------------------------------------- /lib/job/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/job/email.py -------------------------------------------------------------------------------- /lib/job/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/job/run.py -------------------------------------------------------------------------------- /lib/log_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/log_types.py -------------------------------------------------------------------------------- /lib/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/machine.py -------------------------------------------------------------------------------- /lib/metric_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/metric_importer.py -------------------------------------------------------------------------------- /lib/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/notes.py -------------------------------------------------------------------------------- /lib/phase_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/phase_stats.py -------------------------------------------------------------------------------- /lib/process_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/process_helpers.py -------------------------------------------------------------------------------- /lib/repo_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/repo_info.py -------------------------------------------------------------------------------- /lib/scenario_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/scenario_runner.py -------------------------------------------------------------------------------- /lib/schema_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/schema_checker.py -------------------------------------------------------------------------------- /lib/secure_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/secure_variable.py -------------------------------------------------------------------------------- /lib/system_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/system_checks.py -------------------------------------------------------------------------------- /lib/temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/temperature.py -------------------------------------------------------------------------------- /lib/terminal_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/terminal_colors.py -------------------------------------------------------------------------------- /lib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/user.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/utils.py -------------------------------------------------------------------------------- /lib/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/validate.py -------------------------------------------------------------------------------- /lib/venv_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/venv_checker.py -------------------------------------------------------------------------------- /lib/watchlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/lib/watchlist.py -------------------------------------------------------------------------------- /metric_providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/base.py -------------------------------------------------------------------------------- /metric_providers/cgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cgroup.py -------------------------------------------------------------------------------- /metric_providers/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/container.py -------------------------------------------------------------------------------- /metric_providers/cpu/energy/rapl/msr/component/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/energy/rapl/msr/component/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/energy/rapl/msr/component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/energy/rapl/msr/component/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/energy/rapl/msr/component/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/energy/rapl/msr/component/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/energy/rapl/msr/component/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/energy/rapl/msr/component/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/frequency/sysfs/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/frequency/sysfs/core/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/frequency/sysfs/core/get-scaling-cur-freq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/frequency/sysfs/core/get-scaling-cur-freq.sh -------------------------------------------------------------------------------- /metric_providers/cpu/frequency/sysfs/core/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/frequency/sysfs/core/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/throttling/msr/component/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/throttling/msr/component/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/throttling/msr/component/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/throttling/msr/component/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/throttling/msr/component/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/throttling/msr/component/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/container/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/container/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/container/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/container/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/container/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/container/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/container/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/system/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/system/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/system/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/time/cgroup/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/cgroup/system/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/time/procfs/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/procfs/system/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/time/procfs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/procfs/system/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/time/procfs/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/procfs/system/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/time/procfs/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/time/procfs/system/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/container/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/container/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/container/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/container/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/container/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/container/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/container/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/system/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/system/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/cgroup/system/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/cgroup/system/source.c: -------------------------------------------------------------------------------- 1 | ../container/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/mach/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/mach/system/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/mach/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/mach/system/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/mach/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/mach/system/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/mach/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/mach/system/source.c -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/procfs/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/procfs/system/Makefile -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/procfs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/procfs/system/README.md -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/procfs/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/procfs/system/provider.py -------------------------------------------------------------------------------- /metric_providers/cpu/utilization/procfs/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/cpu/utilization/procfs/system/source.c -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/container/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/container/Makefile -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/container/README.md -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/container/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/container/provider.py -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/container/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/container/source.c -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/system/Makefile -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/system/README.md -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/cgroup/system/provider.py -------------------------------------------------------------------------------- /metric_providers/disk/io/cgroup/system/source.c: -------------------------------------------------------------------------------- 1 | ../container/source.c -------------------------------------------------------------------------------- /metric_providers/disk/io/disk_io_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/disk_io_parse.py -------------------------------------------------------------------------------- /metric_providers/disk/io/procfs/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/procfs/system/Makefile -------------------------------------------------------------------------------- /metric_providers/disk/io/procfs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/procfs/system/README.md -------------------------------------------------------------------------------- /metric_providers/disk/io/procfs/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/procfs/system/provider.py -------------------------------------------------------------------------------- /metric_providers/disk/io/procfs/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/io/procfs/system/source.c -------------------------------------------------------------------------------- /metric_providers/disk/used/statvfs/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/used/statvfs/system/Makefile -------------------------------------------------------------------------------- /metric_providers/disk/used/statvfs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/used/statvfs/system/README.md -------------------------------------------------------------------------------- /metric_providers/disk/used/statvfs/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/used/statvfs/system/provider.py -------------------------------------------------------------------------------- /metric_providers/disk/used/statvfs/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/disk/used/statvfs/system/source.c -------------------------------------------------------------------------------- /metric_providers/gpu/energy/nvidia/nvml/component/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/gpu/energy/nvidia/nvml/component/Makefile -------------------------------------------------------------------------------- /metric_providers/gpu/energy/nvidia/nvml/component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/gpu/energy/nvidia/nvml/component/README.md -------------------------------------------------------------------------------- /metric_providers/gpu/energy/nvidia/nvml/component/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/gpu/energy/nvidia/nvml/component/provider.py -------------------------------------------------------------------------------- /metric_providers/gpu/energy/nvidia/nvml/component/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/gpu/energy/nvidia/nvml/component/source.c -------------------------------------------------------------------------------- /metric_providers/lmsensors/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/CPPLINT.cfg -------------------------------------------------------------------------------- /metric_providers/lmsensors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/Makefile -------------------------------------------------------------------------------- /metric_providers/lmsensors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/README.md -------------------------------------------------------------------------------- /metric_providers/lmsensors/abstract_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/abstract_provider.py -------------------------------------------------------------------------------- /metric_providers/lmsensors/chips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/chips.c -------------------------------------------------------------------------------- /metric_providers/lmsensors/chips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/chips.h -------------------------------------------------------------------------------- /metric_providers/lmsensors/fan/component/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/fan/component/provider.py -------------------------------------------------------------------------------- /metric_providers/lmsensors/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/source.c -------------------------------------------------------------------------------- /metric_providers/lmsensors/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/source.h -------------------------------------------------------------------------------- /metric_providers/lmsensors/temperature/component/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/lmsensors/temperature/component/provider.py -------------------------------------------------------------------------------- /metric_providers/memory/energy/rapl/msr/component/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/energy/rapl/msr/component/Makefile -------------------------------------------------------------------------------- /metric_providers/memory/energy/rapl/msr/component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/energy/rapl/msr/component/README.md -------------------------------------------------------------------------------- /metric_providers/memory/energy/rapl/msr/component/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/energy/rapl/msr/component/provider.py -------------------------------------------------------------------------------- /metric_providers/memory/energy/rapl/msr/component/source.c: -------------------------------------------------------------------------------- 1 | ../../../../../cpu/energy/rapl/msr/component/source.c -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/container/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/container/Makefile -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/container/README.md -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/container/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/container/provider.py -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/container/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/container/source.c -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/system/Makefile -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/system/README.md -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/cgroup/system/provider.py -------------------------------------------------------------------------------- /metric_providers/memory/used/cgroup/system/source.c: -------------------------------------------------------------------------------- 1 | ../container/source.c -------------------------------------------------------------------------------- /metric_providers/memory/used/procfs/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/procfs/system/Makefile -------------------------------------------------------------------------------- /metric_providers/memory/used/procfs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/procfs/system/README.md -------------------------------------------------------------------------------- /metric_providers/memory/used/procfs/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/procfs/system/provider.py -------------------------------------------------------------------------------- /metric_providers/memory/used/procfs/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/memory/used/procfs/system/source.c -------------------------------------------------------------------------------- /metric_providers/network/connections/proxy/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/connections/proxy/container/README.md -------------------------------------------------------------------------------- /metric_providers/network/connections/proxy/container/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/connections/proxy/container/provider.py -------------------------------------------------------------------------------- /metric_providers/network/connections/proxy/container/proxy_conf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/connections/proxy/container/proxy_conf.conf -------------------------------------------------------------------------------- /metric_providers/network/connections/tcpdump/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/connections/tcpdump/system/README.md -------------------------------------------------------------------------------- /metric_providers/network/connections/tcpdump/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/connections/tcpdump/system/provider.py -------------------------------------------------------------------------------- /metric_providers/network/connections/tcpdump/system/tcpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/connections/tcpdump/system/tcpdump.sh -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/container/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/container/Makefile -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/container/README.md -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/container/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/container/provider.py -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/container/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/container/source.c -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/system/Makefile -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/system/README.md -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/cgroup/system/provider.py -------------------------------------------------------------------------------- /metric_providers/network/io/cgroup/system/source.c: -------------------------------------------------------------------------------- 1 | ../container/source.c -------------------------------------------------------------------------------- /metric_providers/network/io/procfs/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/procfs/system/Makefile -------------------------------------------------------------------------------- /metric_providers/network/io/procfs/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/procfs/system/README.md -------------------------------------------------------------------------------- /metric_providers/network/io/procfs/system/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/procfs/system/provider.py -------------------------------------------------------------------------------- /metric_providers/network/io/procfs/system/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/network/io/procfs/system/source.c -------------------------------------------------------------------------------- /metric_providers/powermetrics/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/powermetrics/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/gude/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/gude/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/gude/machine/check_gude_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/gude/machine/check_gude_modified.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/gude/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/gude/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/ipmi/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/ipmi/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/ipmi/machine/ipmi-get-machine-energy-stat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/ipmi/machine/ipmi-get-machine-energy-stat.sh -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/ipmi/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/ipmi/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/mcp/machine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/mcp/machine/Makefile -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/mcp/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/mcp/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/mcp/machine/mcp_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/mcp/machine/mcp_com.h -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/mcp/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/mcp/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/mcp/machine/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/mcp/machine/source.c -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/powerspy2/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/powerspy2/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/powerspy2/machine/metric-provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/powerspy2/machine/metric-provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/powerspy2/machine/powerspy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/powerspy2/machine/powerspy2.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/powerspy2/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/powerspy2/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/sdia/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/sdia/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/sdia/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/sdia/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/xgboost/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/xgboost/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/ac/xgboost/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/ac/xgboost/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/dc/rapl/msr/machine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/dc/rapl/msr/machine/Makefile -------------------------------------------------------------------------------- /metric_providers/psu/energy/dc/rapl/msr/machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/dc/rapl/msr/machine/README.md -------------------------------------------------------------------------------- /metric_providers/psu/energy/dc/rapl/msr/machine/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/metric_providers/psu/energy/dc/rapl/msr/machine/provider.py -------------------------------------------------------------------------------- /metric_providers/psu/energy/dc/rapl/msr/machine/source.c: -------------------------------------------------------------------------------- 1 | ../../../../../../cpu/energy/rapl/msr/component/source.c -------------------------------------------------------------------------------- /migrations/2024_01_04_machines_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_01_04_machines_status.sql -------------------------------------------------------------------------------- /migrations/2024_01_05_base_temperature.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_01_05_base_temperature.sql -------------------------------------------------------------------------------- /migrations/2024_01_12_configuration.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE machines ADD COLUMN "configuration" json; 2 | -------------------------------------------------------------------------------- /migrations/2024_03_04_optimizations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_03_04_optimizations.sql -------------------------------------------------------------------------------- /migrations/2024_03_19_failed.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "public"."runs" ADD COLUMN "failed" bool DEFAULT FALSE; 2 | -------------------------------------------------------------------------------- /migrations/2024_03_23_eco-ci-performance-fix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_03_23_eco-ci-performance-fix.sql -------------------------------------------------------------------------------- /migrations/2024_04_11_eco-ci-co2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_04_11_eco-ci-co2.sql -------------------------------------------------------------------------------- /migrations/2024_04_13_error_handling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_04_13_error_handling.sql -------------------------------------------------------------------------------- /migrations/2024_08_22_authentication.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_08_22_authentication.sql -------------------------------------------------------------------------------- /migrations/2024_10_17_ci_measurements_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_10_17_ci_measurements_v2.sql -------------------------------------------------------------------------------- /migrations/2024_10_18_timeline_projects_last_marker.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "public"."timeline_projects" ADD COLUMN "last_marker" text; 2 | -------------------------------------------------------------------------------- /migrations/2024_12_17_user_zero.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_12_17_user_zero.sql -------------------------------------------------------------------------------- /migrations/2024_12_24_measurement_table_split.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2024_12_24_measurement_table_split.sql -------------------------------------------------------------------------------- /migrations/2025_03_22_projects_to_watchlist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_03_22_projects_to_watchlist.sql -------------------------------------------------------------------------------- /migrations/2025_03_24_watchlist_images.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_03_24_watchlist_images.sql -------------------------------------------------------------------------------- /migrations/2025_03_26_user_settings_dashboard.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_03_26_user_settings_dashboard.sql -------------------------------------------------------------------------------- /migrations/2025_04_11_eco_ci_note.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_04_11_eco_ci_note.sql -------------------------------------------------------------------------------- /migrations/2025_05_01_usage_scearion_variables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_05_01_usage_scearion_variables.sql -------------------------------------------------------------------------------- /migrations/2025_05_13_user_settings_dashboard.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_05_13_user_settings_dashboard.sql -------------------------------------------------------------------------------- /migrations/2025_05_14_jobs_schedule_modes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_05_14_jobs_schedule_modes.sql -------------------------------------------------------------------------------- /migrations/2025_05_18_phase_padding.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_05_18_phase_padding.sql -------------------------------------------------------------------------------- /migrations/2025_05_29_job_cancel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_05_29_job_cancel.sql -------------------------------------------------------------------------------- /migrations/2025_06_14_changelog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_06_14_changelog.sql -------------------------------------------------------------------------------- /migrations/2025_07_31_warnings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_07_31_warnings.sql -------------------------------------------------------------------------------- /migrations/2025_08_01_more_measurement_user_settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_08_01_more_measurement_user_settings.sql -------------------------------------------------------------------------------- /migrations/2025_08_17_dependency_resolver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_08_17_dependency_resolver.sql -------------------------------------------------------------------------------- /migrations/2025_09_16_logs_text_to_jsonb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_09_16_logs_text_to_jsonb.sql -------------------------------------------------------------------------------- /migrations/2025_09_20_cluster_health.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_09_20_cluster_health.sql -------------------------------------------------------------------------------- /migrations/2025_09_28_drop_db_unique.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX "measurement_values_unique"; 2 | -------------------------------------------------------------------------------- /migrations/2025_10_16_phase_stats_hidden.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "phase_stats" ADD COLUMN "hidden" bool DEFAULT 'FALSE'; 2 | -------------------------------------------------------------------------------- /migrations/2025_10_16_remove_sampling_rate_configured.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "phase_stats" ADD COLUMN "hidden" bool DEFAULT 'FALSE'; 2 | -------------------------------------------------------------------------------- /migrations/2025_11_20_CarbonDB_and_PowerHOG_public_routes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_11_20_CarbonDB_and_PowerHOG_public_routes.sql -------------------------------------------------------------------------------- /migrations/2025_11_22_add_fields_to_ci_measurements.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_11_22_add_fields_to_ci_measurements.sql -------------------------------------------------------------------------------- /migrations/2025_12_04_archive_and_note_and_public.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_12_04_archive_and_note_and_public.sql -------------------------------------------------------------------------------- /migrations/2025_12_06_carbondb_allow_null_for_grid_intensity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/2025_12_06_carbondb_allow_null_for_grid_intensity.sql -------------------------------------------------------------------------------- /migrations/client_status_2022_02_02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/migrations/client_status_2022_02_02.sql -------------------------------------------------------------------------------- /optimization_providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/optimization_providers/base.py -------------------------------------------------------------------------------- /optimization_providers/durations/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/optimization_providers/durations/container.py -------------------------------------------------------------------------------- /optimization_providers/example/example_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/optimization_providers/example/example_optimization.py -------------------------------------------------------------------------------- /optimization_providers/resources/utilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/optimization_providers/resources/utilization.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/requirements.txt -------------------------------------------------------------------------------- /run-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/run-template.sh -------------------------------------------------------------------------------- /runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/runner.py -------------------------------------------------------------------------------- /templates/ai/usage_scenario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/ai/usage_scenario.yml -------------------------------------------------------------------------------- /templates/ai/usage_scenario_gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/ai/usage_scenario_gpu.yml -------------------------------------------------------------------------------- /templates/partials/gmt-playwright-ipc-v1.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/partials/gmt-playwright-ipc-v1.0.0.js -------------------------------------------------------------------------------- /templates/partials/gmt-playwright-ipc-v1.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/partials/gmt-playwright-ipc-v1.1.0.js -------------------------------------------------------------------------------- /templates/partials/gmt-playwright-v1.0.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/partials/gmt-playwright-v1.0.0.yml -------------------------------------------------------------------------------- /templates/partials/gmt-playwright-v1.1.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/partials/gmt-playwright-v1.1.0.yml -------------------------------------------------------------------------------- /templates/partials/gmt-playwright-with-cache-v1.0.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/partials/gmt-playwright-with-cache-v1.0.0.yml -------------------------------------------------------------------------------- /templates/partials/gmt-playwright-with-cache-v1.1.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/partials/gmt-playwright-with-cache-v1.1.0.yml -------------------------------------------------------------------------------- /templates/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/website/README.md -------------------------------------------------------------------------------- /templates/website/usage_scenario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/website/usage_scenario.yml -------------------------------------------------------------------------------- /templates/website/usage_scenario_cached.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/website/usage_scenario_cached.yml -------------------------------------------------------------------------------- /templates/website/usage_scenario_cached_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/templates/website/usage_scenario_cached_debug.yml -------------------------------------------------------------------------------- /tests/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | dynamic_context = test_function 3 | -------------------------------------------------------------------------------- /tests/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/README.MD -------------------------------------------------------------------------------- /tests/api/test_api_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_base.py -------------------------------------------------------------------------------- /tests/api/test_api_carbondb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_carbondb.py -------------------------------------------------------------------------------- /tests/api/test_api_eco_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_eco_ci.py -------------------------------------------------------------------------------- /tests/api/test_api_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_helpers.py -------------------------------------------------------------------------------- /tests/api/test_api_hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_hog.py -------------------------------------------------------------------------------- /tests/api/test_api_scenario_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_scenario_runner.py -------------------------------------------------------------------------------- /tests/api/test_api_software_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/api/test_api_software_add.py -------------------------------------------------------------------------------- /tests/bisect-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/bisect-script.sh -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cron/test_carbondb_compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/cron/test_carbondb_compress.py -------------------------------------------------------------------------------- /tests/cron/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/cron/test_client.py -------------------------------------------------------------------------------- /tests/cron/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/cron/test_jobs.py -------------------------------------------------------------------------------- /tests/cron/test_watchlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/cron/test_watchlist.py -------------------------------------------------------------------------------- /tests/data/bare-metal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/bare-metal/Dockerfile -------------------------------------------------------------------------------- /tests/data/bare-metal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/bare-metal/README.md -------------------------------------------------------------------------------- /tests/data/bare-metal/usage_scenario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/bare-metal/usage_scenario.yml -------------------------------------------------------------------------------- /tests/data/bare-metal/usage_scenario_enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/bare-metal/usage_scenario_enterprise.yml -------------------------------------------------------------------------------- /tests/data/entrypoint-application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/entrypoint-application/Dockerfile -------------------------------------------------------------------------------- /tests/data/entrypoint-application/entrypoint-overwrite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/entrypoint-application/entrypoint-overwrite.sh -------------------------------------------------------------------------------- /tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,3e6554a4-10bc-46d6-93a1-e61bfd1d9808.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,3e6554a4-10bc-46d6-93a1-e61bfd1d9808.json -------------------------------------------------------------------------------- /tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,a416057b-235f-41d8-9fb8-9bcc70a308e7-machines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,a416057b-235f-41d8-9fb8-9bcc70a308e7-machines.json -------------------------------------------------------------------------------- /tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,a416057b-235f-41d8-9fb8-9bcc70a308e7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,a416057b-235f-41d8-9fb8-9bcc70a308e7.json -------------------------------------------------------------------------------- /tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,f6167993-260e-41db-ab72-d9c3832f211d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/json/compare-f4ed967e-7c27-4055-815f-ea437fc11d25,f6167993-260e-41db-ab72-d9c3832f211d.json -------------------------------------------------------------------------------- /tests/data/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/README.md -------------------------------------------------------------------------------- /tests/data/metrics/cpu_energy_rapl_msr_component.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_energy_rapl_msr_component.log -------------------------------------------------------------------------------- /tests/data/metrics/cpu_energy_rapl_msr_component_single_measurement.log: -------------------------------------------------------------------------------- 1 | 1759592263190498 412000 Package_0 2 | -------------------------------------------------------------------------------- /tests/data/metrics/cpu_energy_rapl_msr_component_underflow.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_energy_rapl_msr_component_underflow.log -------------------------------------------------------------------------------- /tests/data/metrics/cpu_utilization_cgroup_container.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_utilization_cgroup_container.log -------------------------------------------------------------------------------- /tests/data/metrics/cpu_utilization_cgroup_container_non_unique.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_utilization_cgroup_container_non_unique.log -------------------------------------------------------------------------------- /tests/data/metrics/cpu_utilization_cgroup_system.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_utilization_cgroup_system.log -------------------------------------------------------------------------------- /tests/data/metrics/cpu_utilization_mach_system.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_utilization_mach_system.log -------------------------------------------------------------------------------- /tests/data/metrics/cpu_utilization_procfs_system.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/cpu_utilization_procfs_system.log -------------------------------------------------------------------------------- /tests/data/metrics/memory_used_cgroup_container.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/memory_used_cgroup_container.log -------------------------------------------------------------------------------- /tests/data/metrics/network_connections_proxy_container_dockerproxy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_connections_proxy_container_dockerproxy.log -------------------------------------------------------------------------------- /tests/data/metrics/network_connections_tcpdump_system_linux.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_connections_tcpdump_system_linux.log -------------------------------------------------------------------------------- /tests/data/metrics/network_connections_tcpdump_system_macos.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_connections_tcpdump_system_macos.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_cgroup_container.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_cgroup_container.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system_in_hidden_phase.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system_in_hidden_phase.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system_non_monotonic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system_non_monotonic.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system_single_measurement.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system_single_measurement.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system_two_measurements.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system_two_measurements.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system_two_measurements_at_phase_border_in.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system_two_measurements_at_phase_border_in.log -------------------------------------------------------------------------------- /tests/data/metrics/network_io_procfs_system_two_measurements_at_phase_border_out.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/network_io_procfs_system_two_measurements_at_phase_border_out.log -------------------------------------------------------------------------------- /tests/data/metrics/powermetrics.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/powermetrics.log -------------------------------------------------------------------------------- /tests/data/metrics/psu_energy_ac_mcp_machine.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/metrics/psu_energy_ac_mcp_machine.log -------------------------------------------------------------------------------- /tests/data/mounts/test-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/mounts/test-file -------------------------------------------------------------------------------- /tests/data/slow-start-application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/slow-start-application/Dockerfile -------------------------------------------------------------------------------- /tests/data/slow-start-application/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/slow-start-application/start.sh -------------------------------------------------------------------------------- /tests/data/stress-application/.gitignore: -------------------------------------------------------------------------------- 1 | !compose.yml -------------------------------------------------------------------------------- /tests/data/stress-application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/stress-application/Dockerfile -------------------------------------------------------------------------------- /tests/data/stress-application/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/stress-application/compose.yml -------------------------------------------------------------------------------- /tests/data/stress-application/usage_scenario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/stress-application/usage_scenario.yml -------------------------------------------------------------------------------- /tests/data/tmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/tmp/README.md -------------------------------------------------------------------------------- /tests/data/usage_scenarios/basic_stress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/basic_stress.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/basic_stress_with_limits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/basic_stress_with_limits.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/basic_stress_with_variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/basic_stress_with_variables.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/capture_logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/capture_logs.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/capture_logs_with_invalid_character.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/capture_logs_with_invalid_character.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/capture_logs_with_null_bytes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/capture_logs_with_null_bytes.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/cmd_stress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/cmd_stress.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/compose.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/compose_restart_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/compose_restart_key.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/container_early_exit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/container_early_exit.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/container_immediate_exit_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/container_immediate_exit_with_error.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/dependency_collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/dependency_collection.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on_custom_container_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on_custom_container_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on_error_cycle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on_error_cycle.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on_error_not_running.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on_error_not_running.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on_error_unsupported_condition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on_error_unsupported_condition.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on_huge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on_huge.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/depends_on_long_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/depends_on_long_form.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_arg_bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_arg_bad.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_arg_good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_arg_good.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_pull_amd64_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_pull_amd64_image.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_pull_arm64_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_pull_arm64_image.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_pull_multiarch_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_pull_multiarch_image.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_pull_nonexistent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_pull_nonexistent.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_run_multiarch_image_amd64_digest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_run_multiarch_image_amd64_digest.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/docker_run_multiarch_image_arm64_digest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/docker_run_multiarch_image_arm64_digest.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/duplicate_container_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/duplicate_container_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/duplicate_phase_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/duplicate_phase_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/empty_container_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/empty_container_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/empty_phase_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/empty_phase_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/entrypoint_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/entrypoint_empty.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/entrypoint_script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/entrypoint_script.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/entrypoint_with_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/entrypoint_with_command.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/env_vars_stress_allowed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/env_vars_stress_allowed.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/env_vars_stress_forbidden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/env_vars_stress_forbidden.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/folder_destination_basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/folder_destination_basic.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/folder_destination_with_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/folder_destination_with_build.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/healthcheck_error_container_unhealthy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/healthcheck_error_container_unhealthy.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/healthcheck_error_max_waiting_time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/healthcheck_error_max_waiting_time.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/healthcheck_error_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/healthcheck_error_missing.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/healthcheck_missing_start_period.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/healthcheck_missing_start_period.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/healthcheck_using_interval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/healthcheck_using_interval.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/healthcheck_using_start_interval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/healthcheck_using_start_interval.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/import_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/import_error.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/import_one_flow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/import_one_flow.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/import_one_root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/import_one_root.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/import_one_services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/import_one_services.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/import_two_compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/import_two_compose.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/import_two_root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/import_two_root.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/include_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/include_example.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/internal_network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/internal_network.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/invalid_container_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/invalid_container_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/invalid_container_name_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/invalid_container_name_2.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/invalid_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/invalid_image.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/invalid_phase_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/invalid_phase_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/invalid_phase_name_runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/invalid_phase_name_runtime.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/labels_stress_allowed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/labels_stress_allowed.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/labels_stress_forbidden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/labels_stress_forbidden.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/metric_providers_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/metric_providers_data.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/network_alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/network_alias.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/network_host_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/network_host_create.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/network_host_join.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/network_host_join.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/network_stress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/network_stress.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/none_container_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/none_container_name.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/noop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/noop.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/overwrite_string_from_include.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/overwrite_string_from_include.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/overwrite_string_from_include_even_if_top.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/overwrite_string_from_include_even_if_top.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/parentdir_compose_include/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/parentdir_compose_include/compose.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/parentdir_compose_include/subdir/usage_scenario_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/parentdir_compose_include/subdir/usage_scenario_fail.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/port_bindings_stress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/port_bindings_stress.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_cpu_none.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_cpu_none.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_disalign_cpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_disalign_cpu.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_disalign_memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_disalign_memory.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_good.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_memory_float.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_memory_float.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_memory_none.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_memory_none.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_shm_good.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_shm_good.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/resource_limits_too_high.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/resource_limits_too_high.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/runner_filename/basic_stress_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/runner_filename/basic_stress_1.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/runner_filename/basic_stress_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/runner_filename/basic_stress_2.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_invalid_image_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_image_builds.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_invalid_missing_description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_missing_description.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_invalid_network_alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_network_alias.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_invalid_wrong_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_invalid_wrong_type.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_valid.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_dict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_dict.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_valid_labels_as_list.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_alias.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_keys.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/schema_checker/schema_checker_valid_network_as_list.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/setup_commands_multiple_noop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/setup_commands_multiple_noop.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/setup_commands_noop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/setup_commands_noop.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/skip_unsupported_compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/skip_unsupported_compose.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/stress_detached_exit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/stress_detached_exit.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/stress_detached_failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/stress_detached_failure.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/stress_detached_no_exit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/stress_detached_no_exit.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/stress_sci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/stress_sci.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/stress_sci_multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/stress_sci_multi.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/stress_with_named_volume.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/stress_with_named_volume.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_parent_context/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | CMD ["sh"] -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_parent_context/subdir/usage_scenario_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_parent_context/subdir/usage_scenario_fail.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_parent_context/subdir/usage_scenario_ok.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_parent_context/subdir/usage_scenario_ok.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/Dockerfile -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/README.md -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/compose.yaml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/subdir/Dockerfile -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/Dockerfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/Dockerfile2 -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/subdir3/Dockerfile3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/subdir3/Dockerfile3 -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/subdir3/subdir4/testfile4: -------------------------------------------------------------------------------- 1 | testfile4-content 2 | -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/subdir3/testfile3: -------------------------------------------------------------------------------- 1 | testfile3-content 2 | -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/testfile2: -------------------------------------------------------------------------------- 1 | testfile2-content -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/usage_scenario_subdir2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/subdir/subdir2/usage_scenario_subdir2.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/testfile: -------------------------------------------------------------------------------- 1 | testfile-content -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/subdir/usage_scenario_subdir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/subdir/usage_scenario_subdir.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/testfile-root: -------------------------------------------------------------------------------- 1 | testfile-root-content -------------------------------------------------------------------------------- /tests/data/usage_scenarios/subdir_volume_loading/usage_scenario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/subdir_volume_loading/usage_scenario.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/test_docker_compose_entrypoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/test_docker_compose_entrypoint.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/test_docker_entry_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/test_docker_entry_command.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/unsupported_compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/unsupported_compose.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/volume_bindings_stress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/volume_bindings_stress.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/volume_load_etc_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/volume_load_etc_hosts.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/volume_load_non_bind_mounts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/volume_load_non_bind_mounts.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/volume_load_references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/volume_load_references.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/volume_load_symlinks_negative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/volume_load_symlinks_negative.yml -------------------------------------------------------------------------------- /tests/data/usage_scenarios/volume_load_within_proj.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/usage_scenarios/volume_load_within_proj.yml -------------------------------------------------------------------------------- /tests/data/web-application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/Dockerfile -------------------------------------------------------------------------------- /tests/data/web-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/README.md -------------------------------------------------------------------------------- /tests/data/web-application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/web-application/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/docker-compose.yml -------------------------------------------------------------------------------- /tests/data/web-application/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/manage.py -------------------------------------------------------------------------------- /tests/data/web-application/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==4.2.23 2 | psycopg2-binary==2.9.10 3 | -------------------------------------------------------------------------------- /tests/data/web-application/testproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/web-application/testproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/testproject/settings.py -------------------------------------------------------------------------------- /tests/data/web-application/testproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/testproject/urls.py -------------------------------------------------------------------------------- /tests/data/web-application/testproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/testproject/wsgi.py -------------------------------------------------------------------------------- /tests/data/web-application/usage_scenario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/data/web-application/usage_scenario.yml -------------------------------------------------------------------------------- /tests/edit-etc-hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/edit-etc-hosts.sh -------------------------------------------------------------------------------- /tests/frontend/test_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/frontend/test_frontend.py -------------------------------------------------------------------------------- /tests/frontend/test_frontend_carbondb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/frontend/test_frontend_carbondb.py -------------------------------------------------------------------------------- /tests/lib/test_container_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_container_compatibility.py -------------------------------------------------------------------------------- /tests/lib/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_db.py -------------------------------------------------------------------------------- /tests/lib/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_diff.py -------------------------------------------------------------------------------- /tests/lib/test_email_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_email_helpers.py -------------------------------------------------------------------------------- /tests/lib/test_metric_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_metric_importer.py -------------------------------------------------------------------------------- /tests/lib/test_phase_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_phase_stats.py -------------------------------------------------------------------------------- /tests/lib/test_save_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_save_notes.py -------------------------------------------------------------------------------- /tests/lib/test_schema_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_schema_checker.py -------------------------------------------------------------------------------- /tests/lib/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/lib/test_user.py -------------------------------------------------------------------------------- /tests/metric_providers/test_metric_provider_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/metric_providers/test_metric_provider_functions.py -------------------------------------------------------------------------------- /tests/metric_providers/test_metric_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/metric_providers/test_metric_providers.py -------------------------------------------------------------------------------- /tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/run-tests.sh -------------------------------------------------------------------------------- /tests/setup-test-env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/setup-test-env.py -------------------------------------------------------------------------------- /tests/smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/smoke_test.py -------------------------------------------------------------------------------- /tests/start-test-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/start-test-containers.sh -------------------------------------------------------------------------------- /tests/stop-test-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/stop-test-containers.sh -------------------------------------------------------------------------------- /tests/test-config-extra-network-and-duplicate-psu-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test-config-extra-network-and-duplicate-psu-providers.yml -------------------------------------------------------------------------------- /tests/test-config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test-config.yml.example -------------------------------------------------------------------------------- /tests/test_config_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_config_opts.py -------------------------------------------------------------------------------- /tests/test_dependency_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_dependency_collection.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_internal_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_internal_sanity.py -------------------------------------------------------------------------------- /tests/test_resource_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_resource_limits.py -------------------------------------------------------------------------------- /tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_runner.py -------------------------------------------------------------------------------- /tests/test_usage_scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_usage_scenario.py -------------------------------------------------------------------------------- /tests/test_volume_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_volume_loading.py -------------------------------------------------------------------------------- /tests/test_yml_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tests/test_yml_parsing.py -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/calibrate.py -------------------------------------------------------------------------------- /tools/cluster/cleanup_original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/cluster/cleanup_original.py -------------------------------------------------------------------------------- /tools/dc_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/dc_converter.py -------------------------------------------------------------------------------- /tools/import_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/import_backup.sh -------------------------------------------------------------------------------- /tools/import_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/import_data.py -------------------------------------------------------------------------------- /tools/import_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/import_measurements.py -------------------------------------------------------------------------------- /tools/kill_gmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/kill_gmt.sh -------------------------------------------------------------------------------- /tools/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/optimization.py -------------------------------------------------------------------------------- /tools/phase_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/phase_stats.py -------------------------------------------------------------------------------- /tools/prune_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/prune_db.py -------------------------------------------------------------------------------- /tools/rebuild_carbondb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/rebuild_carbondb.py -------------------------------------------------------------------------------- /tools/rebuild_phase_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/rebuild_phase_stats.py -------------------------------------------------------------------------------- /tools/time-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/time-read.c -------------------------------------------------------------------------------- /tools/update_commit_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/tools/update_commit_data.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/green-coding-solutions/green-metrics-tool/HEAD/uninstall.sh --------------------------------------------------------------------------------