mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
smartmon.sh: add metric for active/low-power mode (#1192)
Add this new metric (where sda is active and sdb is in standby mode): smartmon_device_active{disk="/dev/sda",type="sat"} 1 smartmon_device_active{disk="/dev/sdb",type="sat"} 0 Also skip further metrics if the drive is in a low-power mode. This prevents spinning up disks just to get the metrics (which matches e.g. debian's default behavior for smartd). Signed-off-by: Andre Heider <a.heider@gmail.com>
This commit is contained in:
parent
03bb276deb
commit
7c960fd683
|
@ -167,7 +167,13 @@ device_list="$(/usr/sbin/smartctl --scan-open | awk '/^\/dev/{print $1 "|" $3}')
|
||||||
for device in ${device_list}; do
|
for device in ${device_list}; do
|
||||||
disk="$(echo ${device} | cut -f1 -d'|')"
|
disk="$(echo ${device} | cut -f1 -d'|')"
|
||||||
type="$(echo ${device} | cut -f2 -d'|')"
|
type="$(echo ${device} | cut -f2 -d'|')"
|
||||||
|
active=1
|
||||||
echo "smartctl_run{disk=\"${disk}\",type=\"${type}\"}" "$(TZ=UTC date '+%s')"
|
echo "smartctl_run{disk=\"${disk}\",type=\"${type}\"}" "$(TZ=UTC date '+%s')"
|
||||||
|
# Check if the device is in a low-power mode
|
||||||
|
/usr/sbin/smartctl -n standby -d "${type}" "${disk}" > /dev/null || active=0
|
||||||
|
echo "device_active{disk=\"${disk}\",type=\"${type}\"}" "${active}"
|
||||||
|
# Skip further metrics to prevent the disk from spinning up
|
||||||
|
test ${active} -eq 0 && continue
|
||||||
# Get the SMART information and health
|
# Get the SMART information and health
|
||||||
/usr/sbin/smartctl -i -H -d "${type}" "${disk}" | parse_smartctl_info "${disk}" "${type}"
|
/usr/sbin/smartctl -i -H -d "${type}" "${disk}" | parse_smartctl_info "${disk}" "${type}"
|
||||||
# Get the SMART attributes
|
# Get the SMART attributes
|
||||||
|
|
Loading…
Reference in a new issue