mirror of
https://github.com/librenms/librenms-agent.git
synced 2024-05-09 09:54:52 +00:00
Update ups-apcups.sh (#361)
Filter out `LINEV` value as some APC models also return `MAXLINEV` and `MINLINEV` values in `apcaccess` output, therefore ruining the final output.
This commit is contained in:
+2
-2
@@ -19,7 +19,7 @@ BIN_GREP='/usr/bin/grep'
|
||||
################################################################
|
||||
TMP=$($BIN_APCS 2>/dev/null)
|
||||
|
||||
for value in "LINEV:[0-9]+" "LOADPCT:[0-9.]+" "BCHARGE:[0-9.]+" "TIMELEFT:[0-9.]+" "^BATTV:[0-9.]+" "NOMINV:[0-9]+" "NOMBATTV:[0-9.]+"
|
||||
for value in "^LINEV:[0-9]+" "LOADPCT:[0-9.]+" "BCHARGE:[0-9.]+" "TIMELEFT:[0-9.]+" "^BATTV:[0-9.]+" "NOMINV:[0-9]+" "NOMBATTV:[0-9.]+"
|
||||
do
|
||||
OUT=$(echo "$TMP" | $BIN_TR -d ' ' | $BIN_GREP -Eo "$value" | $BIN_CUT -d ":" -f 2)
|
||||
if [ -n "$OUT" ]; then
|
||||
@@ -27,4 +27,4 @@ do
|
||||
else
|
||||
echo "Unknown"
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user