You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
364 B
9 lines
364 B
# The count of CPUs per node, useful for getting CPU time as a percent of total.
|
|
instance:node_cpus:count = count(node_cpu{mode="idle"}) without (cpu,mode)
|
|
|
|
# CPU in use by CPU.
|
|
instance_cpu:node_cpu_not_idle:rate5m = sum(rate(node_cpu{mode!="idle"}[5m])) without (mode)
|
|
|
|
# CPU in use by mode.
|
|
instance_mode:node_cpu:rate5m = sum(rate(node_cpu[5m])) without (cpu)
|