DD2-monitor/rrdb/insert.sh

15 lines
244 B
Bash
Raw Normal View History

2019-01-03 16:26:46 +01:00
#!/bin/bash
source ./commun.sh
ctime=$(date +'%s')
value=$(cut -d ' ' -f 1 /proc/loadavg)
2019-01-04 14:09:02 +01:00
# display and write value to a file
2019-01-03 16:26:46 +01:00
echo ${ctime} ${value} | tee -a bar.dat
# inject value in the rrdb file
rrdtool update $RRDB ${ctime}:${value}