├── .circleci └── config.yml ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pylintrc ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config ├── ccr-files │ └── supremm_update_ccr ├── config.json ├── prometheus │ └── mapping.json └── templates │ ├── hotproc │ └── hotproc.conf │ ├── pmlogger │ ├── control │ └── pmlogger-supremm.config │ └── slurm │ ├── slurm-epilog │ └── slurm-prolog ├── pytest.ini ├── setup.cfg ├── setup.py ├── src └── supremm │ ├── .gitignore │ ├── Job.py │ ├── TimeseriesPatterns.py │ ├── __init__.py │ ├── account.py │ ├── accounting.py │ ├── assets │ ├── modw_pcp.sql │ ├── modw_supremm.sql │ └── mongo_setup.js │ ├── batch_acct.py │ ├── config.py │ ├── datadumper.py │ ├── datasource │ ├── __init__.py │ ├── datasource.py │ ├── factory.py │ ├── pcp │ │ ├── __init__.py │ │ ├── indexarchives.py │ │ ├── pcparchive.py │ │ ├── pcpcinterface │ │ │ ├── __init__.py │ │ │ ├── c_pcp.pxd │ │ │ └── pcpcinterface.pyx │ │ ├── pcpdatasource.py │ │ └── pcpsummarize.py │ └── prometheus │ │ ├── __init__.py │ │ ├── promdatasource.py │ │ ├── prominterface.py │ │ ├── prommapping.py │ │ └── promsummarize.py │ ├── errors.py │ ├── gen_pmlogger_control.py │ ├── ingest_jobscripts.py │ ├── lariat.py │ ├── linuxhelpers.py │ ├── migrations │ └── 1.0-1.1 │ │ └── modw_supremm.sql │ ├── outputter.py │ ├── plugin.py │ ├── plugins │ ├── ArmPowerUsageTimeseries.py │ ├── Block.py │ ├── BlockTimeseries.py │ ├── Catastrophe.py │ ├── CgroupMemTimeseries.py │ ├── CgroupMemory.py │ ├── CpuCategories.py │ ├── CpuPerfCounters.py │ ├── CpuUsage.py │ ├── CpuUserTimeseries.py │ ├── Gpfs.py │ ├── GpfsTimeseries.py │ ├── GpuPower.py │ ├── GpuUsage.py │ ├── GpuUsageTimeseries.py │ ├── InfiniBand.py │ ├── InfiniBandTimeseries.py │ ├── IpmiPower.py │ ├── Lnet.py │ ├── LoadAvg.py │ ├── Lustre.py │ ├── LustreTimeseries.py │ ├── MemBwTimeseries.py │ ├── MemUsageTimeseries.py │ ├── MemoryUsage.py │ ├── Network.py │ ├── Nfs.py │ ├── NfsTimeseries.py │ ├── NodeMemoryUsage.py │ ├── PowerUsageTimeseries.py │ ├── SimdInsTimeseries.py │ ├── SveTimeseries.py │ ├── TaccCatastrophe.py │ ├── TaccPerfCounters.py │ ├── TaccUncoreCounters.py │ ├── TimeseriesPatternsGpfs.py │ ├── TotalMemUsageTimeseries.py │ ├── UncoreCounters.py │ └── __init__.py │ ├── preprocessors │ ├── HardwareInventory.py │ ├── PerfEvent.py │ ├── Proc.py │ ├── ProcPrometheus.py │ └── __init__.py │ ├── proc_common.py │ ├── processhelpers.py │ ├── rangechange.py │ ├── scripthelpers.py │ ├── statistics.py │ ├── subsample.py │ ├── summarize.py │ ├── summarize_jobs.py │ ├── summarize_mpi.py │ ├── supremm_setup.py │ ├── supremm_testharness.py │ ├── supremm_update │ ├── supremm_upgrade.py │ ├── supremmconf.py │ ├── xdmodaccount.py │ └── xdmodstylesetupmenu.py └── tests ├── __init__.py ├── ci ├── Dockerfile ├── build.sh ├── setup.sh ├── srv │ ├── prom_cluster.txt │ ├── prometheus │ │ ├── Dockerfile │ │ ├── promdata.tar.gz │ │ ├── prometheus.yml │ │ └── web.yml │ └── services.yml └── test │ ├── Dockerfile │ └── bootstrap.sh ├── component ├── data │ ├── perfevent.0 │ ├── perfevent.index │ └── perfevent.meta └── runtests.sh ├── integration_tests ├── 5894431-1622570028 │ ├── cpn-d14-02.0 │ ├── cpn-d14-02.index │ └── cpn-d14-02.meta ├── __init__.py ├── integration_plugin_api.py ├── integration_test.bash ├── mock_preprocessor.py ├── pcp_logs_extracted │ ├── 20161229.00.10.0 │ ├── 20161229.00.10.index │ ├── 20161229.00.10.meta │ ├── job-972366-begin-20161229.23.06.00.0 │ ├── job-972366-begin-20161229.23.06.00.index │ ├── job-972366-begin-20161229.23.06.00.meta │ ├── job-972366-end-20161230.00.06.00.0 │ ├── job-972366-end-20161230.00.06.00.index │ └── job-972366-end-20161230.00.06.00.meta ├── supremm_setup_expect.py └── throwing_plugin.py ├── testPcpArchiveProcessor.py ├── testgetoptions.py ├── testrangechange.py └── testsummarize.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/.pylintrc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/README.md -------------------------------------------------------------------------------- /config/ccr-files/supremm_update_ccr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/ccr-files/supremm_update_ccr -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/config.json -------------------------------------------------------------------------------- /config/prometheus/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/prometheus/mapping.json -------------------------------------------------------------------------------- /config/templates/hotproc/hotproc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/templates/hotproc/hotproc.conf -------------------------------------------------------------------------------- /config/templates/pmlogger/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/templates/pmlogger/control -------------------------------------------------------------------------------- /config/templates/pmlogger/pmlogger-supremm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/templates/pmlogger/pmlogger-supremm.config -------------------------------------------------------------------------------- /config/templates/slurm/slurm-epilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/templates/slurm/slurm-epilog -------------------------------------------------------------------------------- /config/templates/slurm/slurm-prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/config/templates/slurm/slurm-prolog -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/setup.py -------------------------------------------------------------------------------- /src/supremm/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /src/supremm/Job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/Job.py -------------------------------------------------------------------------------- /src/supremm/TimeseriesPatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/TimeseriesPatterns.py -------------------------------------------------------------------------------- /src/supremm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/__init__.py -------------------------------------------------------------------------------- /src/supremm/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/account.py -------------------------------------------------------------------------------- /src/supremm/accounting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/accounting.py -------------------------------------------------------------------------------- /src/supremm/assets/modw_pcp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/assets/modw_pcp.sql -------------------------------------------------------------------------------- /src/supremm/assets/modw_supremm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/assets/modw_supremm.sql -------------------------------------------------------------------------------- /src/supremm/assets/mongo_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/assets/mongo_setup.js -------------------------------------------------------------------------------- /src/supremm/batch_acct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/batch_acct.py -------------------------------------------------------------------------------- /src/supremm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/config.py -------------------------------------------------------------------------------- /src/supremm/datadumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datadumper.py -------------------------------------------------------------------------------- /src/supremm/datasource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/supremm/datasource/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/datasource.py -------------------------------------------------------------------------------- /src/supremm/datasource/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/factory.py -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/indexarchives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/pcp/indexarchives.py -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/pcparchive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/pcp/pcparchive.py -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/pcpcinterface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/pcpcinterface/c_pcp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/pcp/pcpcinterface/c_pcp.pxd -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/pcpcinterface/pcpcinterface.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/pcp/pcpcinterface/pcpcinterface.pyx -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/pcpdatasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/pcp/pcpdatasource.py -------------------------------------------------------------------------------- /src/supremm/datasource/pcp/pcpsummarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/pcp/pcpsummarize.py -------------------------------------------------------------------------------- /src/supremm/datasource/prometheus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/supremm/datasource/prometheus/promdatasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/prometheus/promdatasource.py -------------------------------------------------------------------------------- /src/supremm/datasource/prometheus/prominterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/prometheus/prominterface.py -------------------------------------------------------------------------------- /src/supremm/datasource/prometheus/prommapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/prometheus/prommapping.py -------------------------------------------------------------------------------- /src/supremm/datasource/prometheus/promsummarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/datasource/prometheus/promsummarize.py -------------------------------------------------------------------------------- /src/supremm/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/errors.py -------------------------------------------------------------------------------- /src/supremm/gen_pmlogger_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/gen_pmlogger_control.py -------------------------------------------------------------------------------- /src/supremm/ingest_jobscripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/ingest_jobscripts.py -------------------------------------------------------------------------------- /src/supremm/lariat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/lariat.py -------------------------------------------------------------------------------- /src/supremm/linuxhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/linuxhelpers.py -------------------------------------------------------------------------------- /src/supremm/migrations/1.0-1.1/modw_supremm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/migrations/1.0-1.1/modw_supremm.sql -------------------------------------------------------------------------------- /src/supremm/outputter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/outputter.py -------------------------------------------------------------------------------- /src/supremm/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugin.py -------------------------------------------------------------------------------- /src/supremm/plugins/ArmPowerUsageTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/ArmPowerUsageTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/Block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Block.py -------------------------------------------------------------------------------- /src/supremm/plugins/BlockTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/BlockTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/Catastrophe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Catastrophe.py -------------------------------------------------------------------------------- /src/supremm/plugins/CgroupMemTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/CgroupMemTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/CgroupMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/CgroupMemory.py -------------------------------------------------------------------------------- /src/supremm/plugins/CpuCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/CpuCategories.py -------------------------------------------------------------------------------- /src/supremm/plugins/CpuPerfCounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/CpuPerfCounters.py -------------------------------------------------------------------------------- /src/supremm/plugins/CpuUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/CpuUsage.py -------------------------------------------------------------------------------- /src/supremm/plugins/CpuUserTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/CpuUserTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/Gpfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Gpfs.py -------------------------------------------------------------------------------- /src/supremm/plugins/GpfsTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/GpfsTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/GpuPower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/GpuPower.py -------------------------------------------------------------------------------- /src/supremm/plugins/GpuUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/GpuUsage.py -------------------------------------------------------------------------------- /src/supremm/plugins/GpuUsageTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/GpuUsageTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/InfiniBand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/InfiniBand.py -------------------------------------------------------------------------------- /src/supremm/plugins/InfiniBandTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/InfiniBandTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/IpmiPower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/IpmiPower.py -------------------------------------------------------------------------------- /src/supremm/plugins/Lnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Lnet.py -------------------------------------------------------------------------------- /src/supremm/plugins/LoadAvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/LoadAvg.py -------------------------------------------------------------------------------- /src/supremm/plugins/Lustre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Lustre.py -------------------------------------------------------------------------------- /src/supremm/plugins/LustreTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/LustreTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/MemBwTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/MemBwTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/MemUsageTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/MemUsageTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/MemoryUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/MemoryUsage.py -------------------------------------------------------------------------------- /src/supremm/plugins/Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Network.py -------------------------------------------------------------------------------- /src/supremm/plugins/Nfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/Nfs.py -------------------------------------------------------------------------------- /src/supremm/plugins/NfsTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/NfsTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/NodeMemoryUsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/NodeMemoryUsage.py -------------------------------------------------------------------------------- /src/supremm/plugins/PowerUsageTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/PowerUsageTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/SimdInsTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/SimdInsTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/SveTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/SveTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/TaccCatastrophe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/TaccCatastrophe.py -------------------------------------------------------------------------------- /src/supremm/plugins/TaccPerfCounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/TaccPerfCounters.py -------------------------------------------------------------------------------- /src/supremm/plugins/TaccUncoreCounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/TaccUncoreCounters.py -------------------------------------------------------------------------------- /src/supremm/plugins/TimeseriesPatternsGpfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/TimeseriesPatternsGpfs.py -------------------------------------------------------------------------------- /src/supremm/plugins/TotalMemUsageTimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/TotalMemUsageTimeseries.py -------------------------------------------------------------------------------- /src/supremm/plugins/UncoreCounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/plugins/UncoreCounters.py -------------------------------------------------------------------------------- /src/supremm/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/supremm/preprocessors/HardwareInventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/preprocessors/HardwareInventory.py -------------------------------------------------------------------------------- /src/supremm/preprocessors/PerfEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/preprocessors/PerfEvent.py -------------------------------------------------------------------------------- /src/supremm/preprocessors/Proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/preprocessors/Proc.py -------------------------------------------------------------------------------- /src/supremm/preprocessors/ProcPrometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/preprocessors/ProcPrometheus.py -------------------------------------------------------------------------------- /src/supremm/preprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/supremm/proc_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/proc_common.py -------------------------------------------------------------------------------- /src/supremm/processhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/processhelpers.py -------------------------------------------------------------------------------- /src/supremm/rangechange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/rangechange.py -------------------------------------------------------------------------------- /src/supremm/scripthelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/scripthelpers.py -------------------------------------------------------------------------------- /src/supremm/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/statistics.py -------------------------------------------------------------------------------- /src/supremm/subsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/subsample.py -------------------------------------------------------------------------------- /src/supremm/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/summarize.py -------------------------------------------------------------------------------- /src/supremm/summarize_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/summarize_jobs.py -------------------------------------------------------------------------------- /src/supremm/summarize_mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/summarize_mpi.py -------------------------------------------------------------------------------- /src/supremm/supremm_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/supremm_setup.py -------------------------------------------------------------------------------- /src/supremm/supremm_testharness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/supremm_testharness.py -------------------------------------------------------------------------------- /src/supremm/supremm_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/supremm_update -------------------------------------------------------------------------------- /src/supremm/supremm_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/supremm_upgrade.py -------------------------------------------------------------------------------- /src/supremm/supremmconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/supremmconf.py -------------------------------------------------------------------------------- /src/supremm/xdmodaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/xdmodaccount.py -------------------------------------------------------------------------------- /src/supremm/xdmodstylesetupmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/src/supremm/xdmodstylesetupmenu.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/Dockerfile -------------------------------------------------------------------------------- /tests/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/build.sh -------------------------------------------------------------------------------- /tests/ci/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/setup.sh -------------------------------------------------------------------------------- /tests/ci/srv/prom_cluster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/srv/prom_cluster.txt -------------------------------------------------------------------------------- /tests/ci/srv/prometheus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/srv/prometheus/Dockerfile -------------------------------------------------------------------------------- /tests/ci/srv/prometheus/promdata.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/srv/prometheus/promdata.tar.gz -------------------------------------------------------------------------------- /tests/ci/srv/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/srv/prometheus/prometheus.yml -------------------------------------------------------------------------------- /tests/ci/srv/prometheus/web.yml: -------------------------------------------------------------------------------- 1 | # TODO use this for basic auth 2 | -------------------------------------------------------------------------------- /tests/ci/srv/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/srv/services.yml -------------------------------------------------------------------------------- /tests/ci/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/test/Dockerfile -------------------------------------------------------------------------------- /tests/ci/test/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/ci/test/bootstrap.sh -------------------------------------------------------------------------------- /tests/component/data/perfevent.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/component/data/perfevent.0 -------------------------------------------------------------------------------- /tests/component/data/perfevent.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/component/data/perfevent.index -------------------------------------------------------------------------------- /tests/component/data/perfevent.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/component/data/perfevent.meta -------------------------------------------------------------------------------- /tests/component/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/component/runtests.sh -------------------------------------------------------------------------------- /tests/integration_tests/5894431-1622570028/cpn-d14-02.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/5894431-1622570028/cpn-d14-02.0 -------------------------------------------------------------------------------- /tests/integration_tests/5894431-1622570028/cpn-d14-02.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/5894431-1622570028/cpn-d14-02.index -------------------------------------------------------------------------------- /tests/integration_tests/5894431-1622570028/cpn-d14-02.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/5894431-1622570028/cpn-d14-02.meta -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/integration_plugin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/integration_plugin_api.py -------------------------------------------------------------------------------- /tests/integration_tests/integration_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/integration_test.bash -------------------------------------------------------------------------------- /tests/integration_tests/mock_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/mock_preprocessor.py -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/20161229.00.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/20161229.00.10.0 -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/20161229.00.10.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/20161229.00.10.index -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/20161229.00.10.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/20161229.00.10.meta -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/job-972366-begin-20161229.23.06.00.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/job-972366-begin-20161229.23.06.00.0 -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/job-972366-begin-20161229.23.06.00.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/job-972366-begin-20161229.23.06.00.index -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/job-972366-begin-20161229.23.06.00.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/job-972366-begin-20161229.23.06.00.meta -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/job-972366-end-20161230.00.06.00.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/job-972366-end-20161230.00.06.00.0 -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/job-972366-end-20161230.00.06.00.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/job-972366-end-20161230.00.06.00.index -------------------------------------------------------------------------------- /tests/integration_tests/pcp_logs_extracted/job-972366-end-20161230.00.06.00.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/pcp_logs_extracted/job-972366-end-20161230.00.06.00.meta -------------------------------------------------------------------------------- /tests/integration_tests/supremm_setup_expect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/supremm_setup_expect.py -------------------------------------------------------------------------------- /tests/integration_tests/throwing_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/integration_tests/throwing_plugin.py -------------------------------------------------------------------------------- /tests/testPcpArchiveProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/testPcpArchiveProcessor.py -------------------------------------------------------------------------------- /tests/testgetoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/testgetoptions.py -------------------------------------------------------------------------------- /tests/testrangechange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/testrangechange.py -------------------------------------------------------------------------------- /tests/testsummarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubccr/supremm/HEAD/tests/testsummarize.py --------------------------------------------------------------------------------