Add script to print the backend info on all servers

This commit is contained in:
Felipe Knorr Kuhn 2023-09-23 07:57:49 -07:00
parent d0696628b2
commit e3cd7dbf34
No known key found for this signature in database
GPG key ID: 79619B52BB097C1A

View file

@ -0,0 +1,7 @@
for LOCATION in fmt va1 fra tk7
do
for NODE in 201 202 203 204 205 206
do
echo $(curl -sk https://node$NODE.$LOCATION.mempool.space/api/v1/backend-info)
done
done