bundlewrap/bundles/apcupsd/files/telegraf_plugin
2022-01-09 00:04:36 +01:00

8 lines
157 B
Bash

#!/bin/bash
date=$(date --utc +%s%N)
for metric in TIMELEFT LOADPCT BCHARGE
do
echo "apcupsd $metric=$(apcaccess -p $metric | cut -d' ' -f1) $date"
done