2016-09-09 15:36:01 +03:00
#!/usr/bin/env bash
################################################################
2016-12-03 14:07:02 +10:00
# Instructions: #
# 1. copy this script to /etc/snmp/ and make it executable: #
# chmod +x ups-nut.sh #
# 2. make sure UPS_NAME below matches the name of your UPS #
# 3. edit your snmpd.conf to include this line: #
# extend ups-nut /etc/snmp/ups-nut.sh #
# 4. restart snmpd on the host #
# 5. activate the app for the desired host in LibreNMS #
2016-09-09 15:36:01 +03:00
################################################################
2016-12-03 14:16:54 +10:00
UPS_NAME = 'APCUPS'
2016-12-03 14:07:02 +10:00
PATH = $PATH :/usr/bin:/bin
TMP = $( upsc $UPS_NAME 2>/dev/null)
2016-09-09 15:36:01 +03:00
2016-12-03 14:07:02 +10:00
for value in "battery\.charge: [0-9.]+" "battery\.(runtime\.)?low: [0-9]+" "battery\.runtime: [0-9]+" "battery\.voltage: [0-9.]+" "battery\.voltage\.nominal: [0-9]+" "input\.voltage\.nominal: [0-9.]+" "input\.voltage: [0-9.]+" "ups\.load: [0-9.]+"
2016-09-09 15:36:01 +03:00
do
2016-12-03 14:07:02 +10:00
OUT = $( echo $TMP | grep -Eo " $value " | awk '{print $2}' | LANG = C sort | head -n 1)
2016-09-24 20:30:09 +03:00
if [ -n " $OUT " ] ; then
echo $OUT
else
echo "Unknown"
fi
2016-09-09 15:36:01 +03:00
done