-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlenskit.toml
More file actions
23 lines (18 loc) · 949 Bytes
/
lenskit.toml
File metadata and controls
23 lines (18 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[random]
seed = 20240717
[prometheus]
url = "http://inertial.cci.drexel.edu:9090"
[machines.screamer]
description = "INERTIAL GPU workstation"
idle_watts = 81
[machines.screamer.power_queries]
system = 'sum_over_time((apcupsd_nominal_power_watts{{machine="screamer"}} * (apcupsd_ups_load_percent{{machine="screamer"}} / 100))[{elapsed}ms:1s])'
cpu = 'increase(node_rapl_package_joules_total{{machine="screamer"}}[{elapsed}ms:1s])'
gpu = 'sum_over_time((nvidia_gpu_power_usage_milliwatts{{machine="screamer"}} / 1000)[{elapsed}ms:1s])'
[machines.cruncher]
description = "INERTIAL datacenter machine"
idle_watts = 220
[machines.cruncher.power_queries]
system = 'sum_over_time(sum(redfish_psu_input_power_watts{{machine="{machine}"}})[{elapsed}ms:1s])'
cpu = 'increase(sum(node_rapl_package_joules_total{{machine="{machine}"}})[{elapsed}ms:1s])'
gpu = 'increase(DCGM_FI_DEV_TOTAL_ENERGY_CONSUMPTION{{machine="{machine}"}}[{elapsed}ms:1s]) / 1000'