diff --git a/docs/node-mixin/config.libsonnet b/docs/node-mixin/config.libsonnet index ea31b59572..76de2013c5 100644 --- a/docs/node-mixin/config.libsonnet +++ b/docs/node-mixin/config.libsonnet @@ -4,7 +4,7 @@ // Select the metrics coming from the node exporter. Note that all // the selected metrics are shown stacked on top of each other in - // the 'USE Method / Cluster' dashboard. Consider disabling that + // the 'Utilization and Saturation / Cluster' dashboard. Consider disabling that // dashboard if mixing up all those metrics in the same dashboard // doesn't make sense (e.g. because they are coming from different // clusters). diff --git a/docs/node-mixin/dashboards/use.libsonnet b/docs/node-mixin/dashboards/use.libsonnet index 9c219298cd..24b7f09a70 100644 --- a/docs/node-mixin/dashboards/use.libsonnet +++ b/docs/node-mixin/dashboards/use.libsonnet @@ -118,7 +118,7 @@ local diskSpaceUtilisation = grafanaDashboards+:: { 'node-rsrc-use.json': dashboard.new( - '%sUSE Method / Node' % $._config.dashboardNamePrefix, + '%sUtilization and Saturation / Node' % $._config.dashboardNamePrefix, ) + dashboard.time.withFrom('now-1h') + dashboard.withTags($._config.dashboardTags) @@ -189,7 +189,7 @@ local diskSpaceUtilisation = ), 'node-cluster-rsrc-use.json': dashboard.new( - '%sUSE Method / Cluster' % $._config.dashboardNamePrefix, + '%sUtilization and Saturation / Cluster' % $._config.dashboardNamePrefix, ) + dashboard.time.withFrom('now-1h') + dashboard.withTags($._config.dashboardTags) @@ -318,7 +318,7 @@ local diskSpaceUtilisation = if $._config.showMultiCluster then { 'node-multicluster-rsrc-use.json': dashboard.new( - '%sUSE Method / Multi-cluster' % $._config.dashboardNamePrefix, + '%sUtilization and Saturation / Multi-cluster' % $._config.dashboardNamePrefix, ) + dashboard.time.withFrom('now-1h') + dashboard.withTags($._config.dashboardTags) diff --git a/docs/node-mixin/lib/prom-mixin.libsonnet b/docs/node-mixin/lib/prom-mixin.libsonnet index 980baf5b7f..5759c24ca1 100644 --- a/docs/node-mixin/lib/prom-mixin.libsonnet +++ b/docs/node-mixin/lib/prom-mixin.libsonnet @@ -497,7 +497,7 @@ local tableTransformation = table.queryOptions.transformation; dashboard: if platform == 'Linux' then dashboard.new( - '%sNodes' % config.dashboardNamePrefix, + '%sNode' % config.dashboardNamePrefix, ) + dashboard.time.withFrom('now-1h') + dashboard.withTags(config.dashboardTags)