2022-01-13 07:06:13 +01:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
hostname=$(hostname)
|
|
|
|
while true
|
2022-01-28 14:32:03 +01:00
|
|
|
do for url in / \
|
|
|
|
'/api/v1/statistics/2h' \
|
|
|
|
'/api/v1/statistics/24h' \
|
|
|
|
'/api/v1/statistics/1w' \
|
|
|
|
'/api/v1/statistics/1m' \
|
|
|
|
'/api/v1/statistics/3m' \
|
|
|
|
'/api/v1/statistics/6m' \
|
|
|
|
'/api/v1/statistics/1y' \
|
|
|
|
'/api/v1/statistics/2y' \
|
|
|
|
'/api/v1/statistics/3y' \
|
2022-02-02 11:03:07 +01:00
|
|
|
'/api/v1/mining/pools/24h' \
|
|
|
|
'/api/v1/mining/pools/3d' \
|
|
|
|
'/api/v1/mining/pools/1w' \
|
|
|
|
'/api/v1/mining/pools/1m' \
|
|
|
|
'/api/v1/mining/pools/3m' \
|
|
|
|
'/api/v1/mining/pools/6m' \
|
|
|
|
'/api/v1/mining/pools/1y' \
|
|
|
|
'/api/v1/mining/pools/2y' \
|
|
|
|
'/api/v1/mining/pools/3y' \
|
|
|
|
'/api/v1/mining/pools/all' \
|
2022-02-21 10:01:09 +01:00
|
|
|
'/api/v1/mining/hashrate/3m' \
|
|
|
|
'/api/v1/mining/hashrate/6m' \
|
|
|
|
'/api/v1/mining/hashrate/1y' \
|
|
|
|
'/api/v1/mining/hashrate/2y' \
|
|
|
|
'/api/v1/mining/hashrate/3y' \
|
|
|
|
'/api/v1/mining/hashrate/all' \
|
2022-02-25 02:21:16 +01:00
|
|
|
'/api/v1/mining/hashrate/pools/3m' \
|
|
|
|
'/api/v1/mining/hashrate/pools/6m' \
|
|
|
|
'/api/v1/mining/hashrate/pools/1y' \
|
|
|
|
'/api/v1/mining/hashrate/pools/2y' \
|
|
|
|
'/api/v1/mining/hashrate/pools/3y' \
|
|
|
|
'/api/v1/mining/hashrate/pools/all' \
|
2022-01-28 14:32:03 +01:00
|
|
|
|
2022-01-13 07:06:13 +01:00
|
|
|
do
|
|
|
|
curl -s "https://${hostname}${url}" >/dev/null
|
|
|
|
done
|
|
|
|
|
2022-03-08 16:55:49 +01:00
|
|
|
counter=1
|
|
|
|
while [ $counter -le 134 ]
|
|
|
|
do
|
|
|
|
curl -s "https://${hostname}/api/v1/mining/pool/${counter}/hashrate" >/dev/null
|
|
|
|
curl -s "https://${hostname}/api/v1/mining/pool/${counter}" >/dev/null
|
|
|
|
((counter++))
|
|
|
|
done
|
|
|
|
|
2022-01-13 07:06:13 +01:00
|
|
|
sleep 10
|
|
|
|
done
|