summaryrefslogtreecommitdiffstats
path: root/configserver/src/main/sh/ping-configserver
blob: f899a3ddc62000c26ec04b781e8027151ea79368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
host=$1
port=$2
curl -s -S -m 5 http://$host:$port/state/v1/health | grep "status\": {\"code\": \"up\"}"
if [ $? -gt 0 ]; then
    exit 1
else
    exit 0
fi