summaryrefslogtreecommitdiff
path: root/monitor.sh
blob: 709372aa47a90c8d3d004c0baf97b148b0fed843 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 #!/bin/bash

links=("https://poc.sigsum.org/crocodile-icefish/sigsum/v0/get-tree-head-cosigned" "https://poc.sigsum.org/crocodile-icefish/sigsum/v0/get-tree-head-to-cosign" "https://poc.sigsum.org/crocodile-icefish/sigsum/v0/get-leaves/0/1" "https://poc.sigsum.org/crocodile-icefish/sigsum/v0/get-consistency-proof/1/3")

for url in ${links[@]};
do
echo $url
  response=$(curl -s -w "%{http_code}" $url)
  http_code=$(tail -n1 <<< "$response")
  if [[ "$http_code" != 200 ]]; then
    echo $url is down. status_code $http_code
  else
    echo $url is working.  status_code $http_code
   fi
done