add bundle:ipmitool, add grafana dashboard row
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-10-18 19:42:27 +02:00
parent 92b2e19e44
commit 8300f48541
Signed by: kunsi
GPG key ID: 12E3D2136B818350
4 changed files with 260 additions and 3 deletions

View file

@ -0,0 +1,27 @@
defaults = {
'apt': {
'packages': {
'ipmitool': {},
},
},
'telegraf': {
'input_plugins': {
'builtin': {
'ipmi_sensor': [{
'interval': '30s',
'metric_version': 2,
'timeout': '20s',
'use_sudo': True,
}],
},
},
'sudo_commands': {
'/usr/bin/ipmitool *',
},
},
'pacman': {
'packages': {
'ipmitool': {},
},
},
}