mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 02:11:49 +01:00
31 lines
681 B
Bash
Executable File
31 lines
681 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
hostname=$(hostname)
|
|
while true
|
|
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' \
|
|
'/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' \
|
|
|
|
do
|
|
curl -s "https://${hostname}${url}" >/dev/null
|
|
done
|
|
|
|
sleep 10
|
|
done
|