More fixes
All checks were successful
gitea-kspace/prometheus-textfile-collectors/pipeline/head This commit looks good
All checks were successful
gitea-kspace/prometheus-textfile-collectors/pipeline/head This commit looks good
This commit is contained in:
parent
d6a8b35a98
commit
3e2dd33cd3
@ -1,8 +1,12 @@
|
||||
#!/bin/bash
|
||||
while true; do
|
||||
/scripts/smartmon.sh > /run/node-exporter/smart.prom
|
||||
/scripts/nvme_metrics.sh > /run/node-exporter/nvme.prom
|
||||
/scripts/bridge.sh > /run/node-exporter/bridge.prom
|
||||
/scripts/ipmitool > /run/node-exporter/impitool.prom
|
||||
/scripts/smartmon.sh > /run/node-exporter/smart.prom.part
|
||||
mv /run/node-exporter/smart.prom.part /run/node-exporter/smart.prom
|
||||
/scripts/nvme_metrics.sh > /run/node-exporter/nvme.prom.part
|
||||
mv /run/node-exporter/nvme.prom.part /run/node-exporter/nvme.prom
|
||||
/scripts/bridge.sh > /run/node-exporter/bridge.prom.part
|
||||
mv /run/node-exporter/bridge.prom.part /run/node-exporter/bridge.prom
|
||||
ipmitool sensor | /scripts/ipmitool > /run/node-exporter/impitool.prom.part
|
||||
mv /run/node-exporter/impitool.prom.part /run/node-exporter/impitool.prom
|
||||
sleep 15
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user