aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbeorn7 <beorn@grafana.com>2019-08-15 16:36:10 +0200
committerbeorn7 <beorn@grafana.com>2019-08-15 16:36:10 +0200
commit024d5ed55e57ff0564b7293c8e7accaf2371c5b6 (patch)
tree3eccb11f364c7d05bf293f4efc2f3a2e4687534b /docs
parenta016d9cd6f43ba8be47f624de95113f897e1b9f9 (diff)
downloadprometheus_node_collector-024d5ed55e57ff0564b7293c8e7accaf2371c5b6.tar.bz2
prometheus_node_collector-024d5ed55e57ff0564b7293c8e7accaf2371c5b6.tar.xz
prometheus_node_collector-024d5ed55e57ff0564b7293c8e7accaf2371c5b6.zip
Fix title of CPU panel to usage
We use the `mode="idle"` metric, but we are inverting it, so this is usage, and that's intended. Signed-off-by: beorn7 <beorn@grafana.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/node-mixin/dashboards/node.libsonnet2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/node-mixin/dashboards/node.libsonnet b/docs/node-mixin/dashboards/node.libsonnet
index 8e29b38..36b330f 100644
--- a/docs/node-mixin/dashboards/node.libsonnet
+++ b/docs/node-mixin/dashboards/node.libsonnet
@@ -12,7 +12,7 @@ local gauge = promgrafonnet.gauge;
12 'nodes.json': 12 'nodes.json':
13 local idleCPU = 13 local idleCPU =
14 graphPanel.new( 14 graphPanel.new(
15 'Idle CPU', 15 'CPU Usage',
16 datasource='$datasource', 16 datasource='$datasource',
17 span=6, 17 span=6,
18 format='percentunit', 18 format='percentunit',