Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/node-mixin/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions docs/node-mixin/dashboards/use.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/node-mixin/lib/prom-mixin.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down