mirror of
https://github.com/mempool/mempool.git
synced 2025-01-06 21:49:15 +01:00
20 lines
377 B
Plaintext
20 lines
377 B
Plaintext
|
#!/usr/bin/env zsh
|
||
|
hostname=$(hostname)
|
||
|
while true
|
||
|
do for url in /url/v1/statistics/2h \
|
||
|
/url/v1/statistics/24h \
|
||
|
/url/v1/statistics/1w \
|
||
|
/url/v1/statistics/1m \
|
||
|
/url/v1/statistics/3m \
|
||
|
/url/v1/statistics/6m \
|
||
|
/url/v1/statistics/1y \
|
||
|
/url/v1/statistics/2y \
|
||
|
/url/v1/statistics/3y \
|
||
|
/
|
||
|
do
|
||
|
curl -s "https://${hostname}${url}" >/dev/null
|
||
|
done
|
||
|
|
||
|
sleep 10
|
||
|
done
|