bundlewrap/bundles/apcupsd/files/telegraf_plugin
2022-08-11 12:37:28 +02:00

10 lines
213 B
Bash

#!/bin/bash
date=$(date --utc +%s%N)
METRICS=$(apcaccess)
for METRIC in TIMELEFT LOADPCT BCHARGE
do
echo "apcupsd $METRIC=$(grep $METRIC <<< $METRICS | cut -d ':' -f 2 | xargs | cut -d ' ' -f 1 ) $date"
done