smartctl
This commit is contained in:
parent
21b530cd8d
commit
7f443cfdd4
7 changed files with 44 additions and 9 deletions
|
@ -136,6 +136,7 @@ for dashboard_id, monitored_node in enumerate(monitored_nodes, start=1):
|
|||
bucket=bucket,
|
||||
host=monitored_node.name,
|
||||
negative=query_config.get('negative', False),
|
||||
boolean_to_int=query_config.get('boolean_to_int', False),
|
||||
resolution=query_config.get('resolution', 1) * 4,
|
||||
filters={
|
||||
'host': monitored_node.name,
|
||||
|
|
|
@ -2,11 +2,23 @@
|
|||
|
||||
for device in $(smartctl --scan | cut -d' ' -f1)
|
||||
do
|
||||
# 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]) ]]
|
||||
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 ]]
|
||||
then
|
||||
# hdd might be sleeping
|
|
@ -1,5 +1,6 @@
|
|||
files = {
|
||||
'/usr/local/share/icinga/plugins/hdd_temp': {
|
||||
'/usr/local/share/icinga/plugins/smartctl': {
|
||||
'source': 'telegraf_plugin',
|
||||
'content_type': 'mako',
|
||||
'mode': '0755',
|
||||
},
|
||||
|
|
|
@ -13,7 +13,7 @@ defaults = {
|
|||
'inputs': {
|
||||
'exec': [{
|
||||
'commands': [
|
||||
f'sudo /usr/local/share/icinga/plugins/hdd_temp',
|
||||
f'sudo /usr/local/share/icinga/plugins/smartctl',
|
||||
],
|
||||
'data_format': 'influx',
|
||||
'interval': '60s',
|
||||
|
@ -22,6 +22,6 @@ defaults = {
|
|||
},
|
||||
},
|
||||
'sudoers': {
|
||||
'telegraf': ['/usr/local/share/icinga/plugins/hdd_temp'],
|
||||
'telegraf': ['/usr/local/share/icinga/plugins/smartctl'],
|
||||
},
|
||||
}
|
||||
|
|
|
@ -6,6 +6,9 @@ from(bucket: "${bucket}")
|
|||
% endfor
|
||||
% if function == 'derivative':
|
||||
|> derivative(nonNegative: true)
|
||||
% endif
|
||||
% if boolean_to_int:
|
||||
|> map(fn: (r) => ({r with _value: if r._value == true then 1 else 0 }))
|
||||
% endif
|
||||
|> aggregateWindow(every: duration(v: int(v: v.windowPeriod)*${resolution}), fn: mean, createEmpty: false)
|
||||
% if negative:
|
||||
|
|
|
@ -13,6 +13,24 @@
|
|||
},
|
||||
'display_name': '__field.labels.device',
|
||||
'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',
|
||||
},
|
||||
}
|
||||
|
|
|
@ -24,13 +24,13 @@
|
|||
},
|
||||
'smartctl': {
|
||||
'/dev/disk/by-id/ata-HGST_HDN726040ALE614_K3GV6TPL': {
|
||||
'apm': 32,
|
||||
'apm': 1,
|
||||
},
|
||||
'/dev/disk/by-id/ata-HGST_HDN726040ALE614_K4KAJXEB': {
|
||||
'apm': 32,
|
||||
'apm': 1,
|
||||
},
|
||||
'/dev/disk/by-id/ata-TOSHIBA_HDWQ140_19VZK0EMFAYG': {
|
||||
'apm': 32,
|
||||
'apm': 1,
|
||||
},
|
||||
},
|
||||
'zfs-mirror': {
|
||||
|
|
Loading…
Reference in a new issue