├── .codespell_ignore ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING ├── COPYING ├── FEATURES_DEPRECATION_PROCESS.md ├── FEATURES_DEPRECATION_SCHEDULE.md ├── LICENSE ├── README.md ├── REPORTING.md ├── SECURITY.md ├── TODO ├── USAGE.md ├── damo ├── for_doc ├── images ├── damo_monitor_holistic.gif ├── damo_monitor_water_nsquared.gif ├── masim_stairs_heatmap_ascii.png └── masim_stairs_snapshot.png ├── packaging ├── build.sh ├── mk_readme.sh ├── pyproject.toml └── setup.py ├── pyproject.toml ├── release_note ├── report_access_exec_scripts ├── README.md ├── idle_time_dist.py ├── idle_time_mem_sz.py ├── mem_sz_for_bw.py └── raw_form.py ├── scripts ├── lru_sort.sh ├── mem_tier.sh └── weighted_interleave.sh ├── src ├── _damo_ascii_color.py ├── _damo_deprecated.py ├── _damo_deprecation_notice.py ├── _damo_dist.py ├── _damo_fmt_str.py ├── _damo_fs.py ├── _damo_print.py ├── _damo_records.py ├── _damo_subcmds.py ├── _damo_subproc.py ├── _damo_sysinfo.py ├── _damo_yaml.py ├── _damon.py ├── _damon_args.py ├── _damon_dbgfs.py ├── _damon_sysfs.py ├── damo.py ├── damo_adjust.py ├── damo_args.py ├── damo_args_accesses_filter.py ├── damo_args_accesses_format.py ├── damo_args_damon.py ├── damo_convert_record_format.py ├── damo_diagnose.py ├── damo_features.py ├── damo_help.py ├── damo_help_access_filter_options.py ├── damo_help_access_format_options.py ├── damo_help_damon_param_options.py ├── damo_lru_sort.py ├── damo_module.py ├── damo_module_general.py ├── damo_module_stat.py ├── damo_monitor.py ├── damo_nr_regions.py ├── damo_pa_layout.py ├── damo_reclaim.py ├── damo_record.py ├── damo_record_info.py ├── damo_replay.py ├── damo_report.py ├── damo_report_access.py ├── damo_report_damon.py ├── damo_report_footprint.py ├── damo_report_heatmap.py ├── damo_report_holistic.py ├── damo_report_profile.py ├── damo_report_sysinfo.py ├── damo_report_times.py ├── damo_schemes.py ├── damo_start.py ├── damo_stop.py ├── damo_tune.py ├── damo_validate.py ├── damo_version.py └── damo_wss.py └── tests ├── damon_lru_sort └── test.sh ├── damon_reclaim └── test.sh ├── pre-commit └── test.sh ├── record └── test.sh ├── report ├── damon.data ├── damon.data.json_compressed ├── damon.data.snapshot.active ├── damon.data.snapshot.anon ├── damon.data.snapshot.file ├── damon.data.snapshot.hugepage ├── damon.data.snapshot.inactive ├── damon.data.snapshot.nofilter ├── damon.data.snapshot.unmapped ├── expects │ ├── report-aggr_1s_raw │ ├── report-aggr_1s_raw_skip_30 │ ├── report-detailed-active │ ├── report-detailed-anon │ ├── report-detailed-file │ ├── report-detailed-hugepage │ ├── report-detailed-inactive │ ├── report-detailed-nofilter │ ├── report-detailed-unmapped │ ├── report-heats │ ├── report-heats_guide │ ├── report-nr_regions │ ├── report-raw │ ├── report-raw_perf_script │ ├── report-recency-percentiles-active │ ├── report-recency-percentiles-anon │ ├── report-recency-percentiles-file │ ├── report-recency-percentiles-hugepage │ ├── report-recency-percentiles-inactive │ ├── report-recency-percentiles-nofilter │ ├── report-recency-percentiles-unmapped │ ├── report-recency-sz-hist-active │ ├── report-recency-sz-hist-anon │ ├── report-recency-sz-hist-file │ ├── report-recency-sz-hist-hugepage │ ├── report-recency-sz-hist-inactive │ ├── report-recency-sz-hist-nofilter │ ├── report-recency-sz-hist-unmapped │ ├── report-temperature-percentiles-active │ ├── report-temperature-percentiles-anon │ ├── report-temperature-percentiles-file │ ├── report-temperature-percentiles-hugepage │ ├── report-temperature-percentiles-inactive │ ├── report-temperature-percentiles-nofilter │ ├── report-temperature-percentiles-unmapped │ ├── report-temperature-sz-hist-active │ ├── report-temperature-sz-hist-anon │ ├── report-temperature-sz-hist-file │ ├── report-temperature-sz-hist-hugepage │ ├── report-temperature-sz-hist-inactive │ ├── report-temperature-sz-hist-nofilter │ ├── report-temperature-sz-hist-unmapped │ ├── report-wss │ └── report-wss_worktime_1s ├── perf.data ├── perf.data.script └── test.sh ├── run.sh ├── schemes ├── alloc_1gb_spin.c ├── cold_mem_stat_damos_template_for_wmarks.json ├── prcl_damos.json ├── prcl_no_anon_damos.json ├── prcl_no_cgroup_damos.json ├── stairs.py └── test.sh ├── start_stop ├── monitoring_damos.json └── test.sh └── unit ├── _test_damo_common.py ├── test.sh ├── test_damo_records.py ├── test_damo_report_access.py ├── test_damo_scheme_dbgfs_conversion.py ├── test_damo_schemes_input.py ├── test_damo_sysinfo.py ├── test_damon.py ├── test_damon_args.py ├── test_damon_dbgfs.py ├── test_damon_sysfs.py └── test_fmt_str.py /.codespell_ignore: -------------------------------------------------------------------------------- 1 | damon 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/COPYING -------------------------------------------------------------------------------- /FEATURES_DEPRECATION_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/FEATURES_DEPRECATION_PROCESS.md -------------------------------------------------------------------------------- /FEATURES_DEPRECATION_SCHEDULE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/FEATURES_DEPRECATION_SCHEDULE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/README.md -------------------------------------------------------------------------------- /REPORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/REPORTING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/TODO -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/USAGE.md -------------------------------------------------------------------------------- /damo: -------------------------------------------------------------------------------- 1 | ./src/damo.py -------------------------------------------------------------------------------- /for_doc: -------------------------------------------------------------------------------- 1 | images -------------------------------------------------------------------------------- /images/damo_monitor_holistic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/images/damo_monitor_holistic.gif -------------------------------------------------------------------------------- /images/damo_monitor_water_nsquared.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/images/damo_monitor_water_nsquared.gif -------------------------------------------------------------------------------- /images/masim_stairs_heatmap_ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/images/masim_stairs_heatmap_ascii.png -------------------------------------------------------------------------------- /images/masim_stairs_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/images/masim_stairs_snapshot.png -------------------------------------------------------------------------------- /packaging/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/packaging/build.sh -------------------------------------------------------------------------------- /packaging/mk_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/packaging/mk_readme.sh -------------------------------------------------------------------------------- /packaging/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/packaging/pyproject.toml -------------------------------------------------------------------------------- /packaging/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/packaging/setup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release_note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/release_note -------------------------------------------------------------------------------- /report_access_exec_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/report_access_exec_scripts/README.md -------------------------------------------------------------------------------- /report_access_exec_scripts/idle_time_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/report_access_exec_scripts/idle_time_dist.py -------------------------------------------------------------------------------- /report_access_exec_scripts/idle_time_mem_sz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/report_access_exec_scripts/idle_time_mem_sz.py -------------------------------------------------------------------------------- /report_access_exec_scripts/mem_sz_for_bw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/report_access_exec_scripts/mem_sz_for_bw.py -------------------------------------------------------------------------------- /report_access_exec_scripts/raw_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/report_access_exec_scripts/raw_form.py -------------------------------------------------------------------------------- /scripts/lru_sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/scripts/lru_sort.sh -------------------------------------------------------------------------------- /scripts/mem_tier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/scripts/mem_tier.sh -------------------------------------------------------------------------------- /scripts/weighted_interleave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/scripts/weighted_interleave.sh -------------------------------------------------------------------------------- /src/_damo_ascii_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_ascii_color.py -------------------------------------------------------------------------------- /src/_damo_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_deprecated.py -------------------------------------------------------------------------------- /src/_damo_deprecation_notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_deprecation_notice.py -------------------------------------------------------------------------------- /src/_damo_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_dist.py -------------------------------------------------------------------------------- /src/_damo_fmt_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_fmt_str.py -------------------------------------------------------------------------------- /src/_damo_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_fs.py -------------------------------------------------------------------------------- /src/_damo_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_print.py -------------------------------------------------------------------------------- /src/_damo_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_records.py -------------------------------------------------------------------------------- /src/_damo_subcmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_subcmds.py -------------------------------------------------------------------------------- /src/_damo_subproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_subproc.py -------------------------------------------------------------------------------- /src/_damo_sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_sysinfo.py -------------------------------------------------------------------------------- /src/_damo_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damo_yaml.py -------------------------------------------------------------------------------- /src/_damon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damon.py -------------------------------------------------------------------------------- /src/_damon_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damon_args.py -------------------------------------------------------------------------------- /src/_damon_dbgfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damon_dbgfs.py -------------------------------------------------------------------------------- /src/_damon_sysfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/_damon_sysfs.py -------------------------------------------------------------------------------- /src/damo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo.py -------------------------------------------------------------------------------- /src/damo_adjust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_adjust.py -------------------------------------------------------------------------------- /src/damo_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_args.py -------------------------------------------------------------------------------- /src/damo_args_accesses_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_args_accesses_filter.py -------------------------------------------------------------------------------- /src/damo_args_accesses_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_args_accesses_format.py -------------------------------------------------------------------------------- /src/damo_args_damon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_args_damon.py -------------------------------------------------------------------------------- /src/damo_convert_record_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_convert_record_format.py -------------------------------------------------------------------------------- /src/damo_diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_diagnose.py -------------------------------------------------------------------------------- /src/damo_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_features.py -------------------------------------------------------------------------------- /src/damo_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_help.py -------------------------------------------------------------------------------- /src/damo_help_access_filter_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_help_access_filter_options.py -------------------------------------------------------------------------------- /src/damo_help_access_format_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_help_access_format_options.py -------------------------------------------------------------------------------- /src/damo_help_damon_param_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_help_damon_param_options.py -------------------------------------------------------------------------------- /src/damo_lru_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_lru_sort.py -------------------------------------------------------------------------------- /src/damo_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_module.py -------------------------------------------------------------------------------- /src/damo_module_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_module_general.py -------------------------------------------------------------------------------- /src/damo_module_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_module_stat.py -------------------------------------------------------------------------------- /src/damo_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_monitor.py -------------------------------------------------------------------------------- /src/damo_nr_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_nr_regions.py -------------------------------------------------------------------------------- /src/damo_pa_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_pa_layout.py -------------------------------------------------------------------------------- /src/damo_reclaim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_reclaim.py -------------------------------------------------------------------------------- /src/damo_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_record.py -------------------------------------------------------------------------------- /src/damo_record_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_record_info.py -------------------------------------------------------------------------------- /src/damo_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_replay.py -------------------------------------------------------------------------------- /src/damo_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report.py -------------------------------------------------------------------------------- /src/damo_report_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_access.py -------------------------------------------------------------------------------- /src/damo_report_damon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_damon.py -------------------------------------------------------------------------------- /src/damo_report_footprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_footprint.py -------------------------------------------------------------------------------- /src/damo_report_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_heatmap.py -------------------------------------------------------------------------------- /src/damo_report_holistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_holistic.py -------------------------------------------------------------------------------- /src/damo_report_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_profile.py -------------------------------------------------------------------------------- /src/damo_report_sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_sysinfo.py -------------------------------------------------------------------------------- /src/damo_report_times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_report_times.py -------------------------------------------------------------------------------- /src/damo_schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_schemes.py -------------------------------------------------------------------------------- /src/damo_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_start.py -------------------------------------------------------------------------------- /src/damo_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_stop.py -------------------------------------------------------------------------------- /src/damo_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_tune.py -------------------------------------------------------------------------------- /src/damo_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_validate.py -------------------------------------------------------------------------------- /src/damo_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_version.py -------------------------------------------------------------------------------- /src/damo_wss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/src/damo_wss.py -------------------------------------------------------------------------------- /tests/damon_lru_sort/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/damon_lru_sort/test.sh -------------------------------------------------------------------------------- /tests/damon_reclaim/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/damon_reclaim/test.sh -------------------------------------------------------------------------------- /tests/pre-commit/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/pre-commit/test.sh -------------------------------------------------------------------------------- /tests/record/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/record/test.sh -------------------------------------------------------------------------------- /tests/report/damon.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data -------------------------------------------------------------------------------- /tests/report/damon.data.json_compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.json_compressed -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.active -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.anon -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.file -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.hugepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.hugepage -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.inactive -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.nofilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.nofilter -------------------------------------------------------------------------------- /tests/report/damon.data.snapshot.unmapped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/damon.data.snapshot.unmapped -------------------------------------------------------------------------------- /tests/report/expects/report-aggr_1s_raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-aggr_1s_raw -------------------------------------------------------------------------------- /tests/report/expects/report-aggr_1s_raw_skip_30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-aggr_1s_raw_skip_30 -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-active -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-anon -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-file -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-hugepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-hugepage -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-inactive -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-nofilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-nofilter -------------------------------------------------------------------------------- /tests/report/expects/report-detailed-unmapped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-detailed-unmapped -------------------------------------------------------------------------------- /tests/report/expects/report-heats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-heats -------------------------------------------------------------------------------- /tests/report/expects/report-heats_guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-heats_guide -------------------------------------------------------------------------------- /tests/report/expects/report-nr_regions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-nr_regions -------------------------------------------------------------------------------- /tests/report/expects/report-raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-raw -------------------------------------------------------------------------------- /tests/report/expects/report-raw_perf_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-raw_perf_script -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-active -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-anon -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-file -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-hugepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-hugepage -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-inactive -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-nofilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-nofilter -------------------------------------------------------------------------------- /tests/report/expects/report-recency-percentiles-unmapped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-percentiles-unmapped -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-active -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-anon -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-file -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-hugepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-hugepage -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-inactive -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-nofilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-nofilter -------------------------------------------------------------------------------- /tests/report/expects/report-recency-sz-hist-unmapped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-recency-sz-hist-unmapped -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-active -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-anon -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-file -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-hugepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-hugepage -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-inactive -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-nofilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-nofilter -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-percentiles-unmapped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-percentiles-unmapped -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-active -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-anon -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-file -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-hugepage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-hugepage -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-inactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-inactive -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-nofilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-nofilter -------------------------------------------------------------------------------- /tests/report/expects/report-temperature-sz-hist-unmapped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-temperature-sz-hist-unmapped -------------------------------------------------------------------------------- /tests/report/expects/report-wss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-wss -------------------------------------------------------------------------------- /tests/report/expects/report-wss_worktime_1s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/expects/report-wss_worktime_1s -------------------------------------------------------------------------------- /tests/report/perf.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/perf.data -------------------------------------------------------------------------------- /tests/report/perf.data.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/perf.data.script -------------------------------------------------------------------------------- /tests/report/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/report/test.sh -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/schemes/alloc_1gb_spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/alloc_1gb_spin.c -------------------------------------------------------------------------------- /tests/schemes/cold_mem_stat_damos_template_for_wmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/cold_mem_stat_damos_template_for_wmarks.json -------------------------------------------------------------------------------- /tests/schemes/prcl_damos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/prcl_damos.json -------------------------------------------------------------------------------- /tests/schemes/prcl_no_anon_damos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/prcl_no_anon_damos.json -------------------------------------------------------------------------------- /tests/schemes/prcl_no_cgroup_damos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/prcl_no_cgroup_damos.json -------------------------------------------------------------------------------- /tests/schemes/stairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/stairs.py -------------------------------------------------------------------------------- /tests/schemes/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/schemes/test.sh -------------------------------------------------------------------------------- /tests/start_stop/monitoring_damos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/start_stop/monitoring_damos.json -------------------------------------------------------------------------------- /tests/start_stop/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/start_stop/test.sh -------------------------------------------------------------------------------- /tests/unit/_test_damo_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/_test_damo_common.py -------------------------------------------------------------------------------- /tests/unit/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test.sh -------------------------------------------------------------------------------- /tests/unit/test_damo_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damo_records.py -------------------------------------------------------------------------------- /tests/unit/test_damo_report_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damo_report_access.py -------------------------------------------------------------------------------- /tests/unit/test_damo_scheme_dbgfs_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damo_scheme_dbgfs_conversion.py -------------------------------------------------------------------------------- /tests/unit/test_damo_schemes_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damo_schemes_input.py -------------------------------------------------------------------------------- /tests/unit/test_damo_sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damo_sysinfo.py -------------------------------------------------------------------------------- /tests/unit/test_damon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damon.py -------------------------------------------------------------------------------- /tests/unit/test_damon_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damon_args.py -------------------------------------------------------------------------------- /tests/unit/test_damon_dbgfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damon_dbgfs.py -------------------------------------------------------------------------------- /tests/unit/test_damon_sysfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_damon_sysfs.py -------------------------------------------------------------------------------- /tests/unit/test_fmt_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damonitor/damo/HEAD/tests/unit/test_fmt_str.py --------------------------------------------------------------------------------