This commit is contained in:
mwiegand 2021-10-30 20:13:24 +02:00
parent 21b530cd8d
commit 7f443cfdd4
7 changed files with 44 additions and 9 deletions

View file

@ -136,6 +136,7 @@ for dashboard_id, monitored_node in enumerate(monitored_nodes, start=1):
bucket=bucket, bucket=bucket,
host=monitored_node.name, host=monitored_node.name,
negative=query_config.get('negative', False), negative=query_config.get('negative', False),
boolean_to_int=query_config.get('boolean_to_int', False),
resolution=query_config.get('resolution', 1) * 4, resolution=query_config.get('resolution', 1) * 4,
filters={ filters={
'host': monitored_node.name, 'host': monitored_node.name,

View file

@ -2,11 +2,23 @@
for device in $(smartctl --scan | cut -d' ' -f1) for device in $(smartctl --scan | cut -d' ' -f1)
do do
temp=$(smartctl -n idle -A --json=c $device | jq .temperature.current) # POWER STATUS
if $(smartctl -n idle -n sleep -i $device | grep "Power mode" | grep -q "STANDBY")
then
active=False
else
active=True
fi
echo "smartctl,host=${node.name},device=$device active=$active $(date --utc +%s%N)"
# TEMPS
temp=$(smartctl -n idle -A --json=c $device | jq .temperature.current)
if [[ $temp == ?(-)+([0-9]) ]] if [[ $temp == ?(-)+([0-9]) ]]
then then
echo "smartctl,host=${node.name},device=$device temperature=$temp $(date --utc +%s%N)" echo "smartctl,host=${node.name},device=$device temperature=<%text>${temp}</%text>i $(date --utc +%s%N)"
elif [[ $temp == null ]] elif [[ $temp == null ]]
then then
# hdd might be sleeping # hdd might be sleeping

View file

@ -1,5 +1,6 @@
files = { files = {
'/usr/local/share/icinga/plugins/hdd_temp': { '/usr/local/share/icinga/plugins/smartctl': {
'source': 'telegraf_plugin',
'content_type': 'mako', 'content_type': 'mako',
'mode': '0755', 'mode': '0755',
}, },

View file

@ -13,7 +13,7 @@ defaults = {
'inputs': { 'inputs': {
'exec': [{ 'exec': [{
'commands': [ 'commands': [
f'sudo /usr/local/share/icinga/plugins/hdd_temp', f'sudo /usr/local/share/icinga/plugins/smartctl',
], ],
'data_format': 'influx', 'data_format': 'influx',
'interval': '60s', 'interval': '60s',
@ -22,6 +22,6 @@ defaults = {
}, },
}, },
'sudoers': { 'sudoers': {
'telegraf': ['/usr/local/share/icinga/plugins/hdd_temp'], 'telegraf': ['/usr/local/share/icinga/plugins/smartctl'],
}, },
} }

View file

@ -6,6 +6,9 @@ from(bucket: "${bucket}")
% endfor % endfor
% if function == 'derivative': % if function == 'derivative':
|> derivative(nonNegative: true) |> derivative(nonNegative: true)
% endif
% if boolean_to_int:
|> map(fn: (r) => ({r with _value: if r._value == true then 1 else 0 }))
% endif % endif
|> aggregateWindow(every: duration(v: int(v: v.windowPeriod)*${resolution}), fn: mean, createEmpty: false) |> aggregateWindow(every: duration(v: int(v: v.windowPeriod)*${resolution}), fn: mean, createEmpty: false)
% if negative: % if negative:

View file

@ -13,6 +13,24 @@
}, },
'display_name': '__field.labels.device', 'display_name': '__field.labels.device',
'min': 0, 'min': 0,
'unit': 'degrees', 'unit': 'celsius',
},
'active': {
'stacked': True,
'queries': {
'usage': {
'filters': {
'_measurement': 'smartctl',
'_field': [
'active',
],
},
'function': 'last',
'boolean_to_int': True,
},
},
'display_name': '__field.labels.device',
'min': 0,
'unit': 'active',
}, },
} }

View file

@ -24,13 +24,13 @@
}, },
'smartctl': { 'smartctl': {
'/dev/disk/by-id/ata-HGST_HDN726040ALE614_K3GV6TPL': { '/dev/disk/by-id/ata-HGST_HDN726040ALE614_K3GV6TPL': {
'apm': 32, 'apm': 1,
}, },
'/dev/disk/by-id/ata-HGST_HDN726040ALE614_K4KAJXEB': { '/dev/disk/by-id/ata-HGST_HDN726040ALE614_K4KAJXEB': {
'apm': 32, 'apm': 1,
}, },
'/dev/disk/by-id/ata-TOSHIBA_HDWQ140_19VZK0EMFAYG': { '/dev/disk/by-id/ata-TOSHIBA_HDWQ140_19VZK0EMFAYG': {
'apm': 32, 'apm': 1,
}, },
}, },
'zfs-mirror': { 'zfs-mirror': {