Skip to content

Commit

Permalink
Add AIX dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
discordianfish committed Sep 7, 2024
1 parent dc774f0 commit 4e50282
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/node-mixin/dashboards/node.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
grafanaDashboards+:: {
'nodes.json': nodemixin.new(config=$._config, platform='Linux', uid=std.md5('nodes.json')).dashboard,
'nodes-darwin.json': nodemixin.new(config=$._config, platform='Darwin', uid=std.md5('nodes-darwin.json')).dashboard,
'nodes-aix.json': nodemixin.new(config=$._config, platform='AIX', uid=std.md5('nodes-aix.json')).dashboard,
},
}
47 changes: 42 additions & 5 deletions docs/node-mixin/lib/prom-mixin.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,19 @@ local table = grafana70.panel.table;
||| % config, legendFormat='App Memory'
))
.addTarget(prometheus.target('node_memory_wired_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"}' % config, legendFormat='Wired Memory'))
.addTarget(prometheus.target('node_memory_compressed_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"}' % config, legendFormat='Compressed')),
.addTarget(prometheus.target('node_memory_compressed_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"}' % config, legendFormat='Compressed'))
else if platform == 'AIX' then
memoryGraphPanelPrototype { stack: false }
.addTarget(prometheus.target('node_memory_total_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"}' % config, legendFormat='Physical Memory'))
.addTarget(prometheus.target(
|||
(
node_memory_total_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"} -
node_memory_free_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"}
)
||| % config, legendFormat='Memory Used'
)),


// NOTE: avg() is used to circumvent a label change caused by a node_exporter rollout.
local memoryGaugePanelPrototype =
Expand Down Expand Up @@ -194,8 +206,21 @@ local table = grafana70.panel.table;
*
100
||| % config
))
else if platform == 'AIX' then
memoryGaugePanelPrototype
.addTarget(prometheus.target(
|||
(
avg(node_memory_free_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"}) /
avg(node_memory_total_bytes{%(nodeExporterSelector)s, instance="$instance", %(clusterLabel)s="$cluster"})
)
*
100
||| % config
)),


local diskIO =
graphPanel.new(
'Disk I/O',
Expand Down Expand Up @@ -501,8 +526,8 @@ local table = grafana70.panel.table;
tags=(config.dashboardTags),
timezone='utc',
refresh='30s',
graphTooltip='shared_crosshair',
uid=std.md5(uid)
uid=std.md5(uid),
graphTooltip='shared_crosshair'
)
.addTemplates(templates)
.addRows(rows)
Expand All @@ -513,8 +538,20 @@ local table = grafana70.panel.table;
tags=(config.dashboardTags),
timezone='utc',
refresh='30s',
graphTooltip='shared_crosshair',
uid=std.md5(uid)
uid=std.md5(uid),
graphTooltip='shared_crosshair'
)
.addTemplates(templates)
.addRows(rows)
else if platform == 'AIX' then
dashboard.new(
'%sAIX' % config.dashboardNamePrefix,
time_from='now-1h',
tags=(config.dashboardTags),
timezone='utc',
refresh='30s',
uid=std.md5(uid),
graphTooltip='shared_crosshair'
)
.addTemplates(templates)
.addRows(rows),
Expand Down

0 comments on commit 4e50282

Please sign in to comment.