mynode/rootfs/standard/usr/bin/mynode-get-bitcoin-ibd-data

26 lines
631 B
Plaintext
Raw Normal View History

2022-06-16 01:10:22 +00:00
#!/bin/bash
# Need to run as sudo
2022-06-18 03:42:11 +00:00
NUM_HOURS=24
2022-06-16 01:10:22 +00:00
export TZ="GMT"
# Check for arg to change hours
if [ "$#" -eq "1" ]; then
NUM_HOURS=$1
fi
2022-06-18 03:42:11 +00:00
echo "Bitcoin Blocks Processed per Hour"
echo "================================="
2022-06-16 01:10:22 +00:00
# Show current hour
d=$(date "+%Y-%m-%dT%H:")
c=$(grep --text "$d" /mnt/hdd/mynode/bitcoin/debug.log | grep "UpdateTip" | wc -l)
echo "${d}00 - ${d}59 | $c (current hour)"
# Show historical hours
for (( i=1; i<=$NUM_HOURS; i++ ))
do
d=$(date -d "$i hour ago" "+%Y-%m-%dT%H:")
c=$(grep --text "$d" /mnt/hdd/mynode/bitcoin/debug.log | grep "UpdateTip" | wc -l)
echo "${d}00 - ${d}59 | $c"
done