How do I extract the SNR data from localnode.local.mesh:8080/cgi-bin/signal?
I would like to find the lowest SNR in the last 48 hours.
73, Chuck
I would like to find the lowest SNR in the last 48 hours.
73, Chuck
Theme by Danetsoft and Danang Probo Sayekti inspired by Maksimer
http://localnode.local.mesh:8080/cgi-bin/api?chart=archive&device=
#
# example.sh
# input argument nodename
# output 10 lowest signal_dbm in last 48 hours
#
wget -O 0.txt http://$1.local.mesh:8080/cgi-bin/api?chart=archive
cat 0.txt | jq .pages.chart.archive[].signal_dbm|sort -n|head