diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-02-07 11:45:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-02-07 11:45:55 +0000 |
commit | a8220ab2d293bb7f4b014b79d16b2fb05090fa93 (patch) | |
tree | 77f0a30f016c0925cf7ee9292e644bba183c2774 /packaging/scripts/test.sh | |
parent | Adding upstream version 1.19.0. (diff) | |
download | netdata-a8220ab2d293bb7f4b014b79d16b2fb05090fa93.tar.xz netdata-a8220ab2d293bb7f4b014b79d16b2fb05090fa93.zip |
Adding upstream version 1.29.0.upstream/1.29.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/scripts/test.sh')
-rwxr-xr-x | packaging/scripts/test.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packaging/scripts/test.sh b/packaging/scripts/test.sh new file mode 100755 index 000000000..24ba2966f --- /dev/null +++ b/packaging/scripts/test.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +wait_for() { + host="${1}" + port="${2}" + name="${3}" + timeout="${4:-30}" + + printf "Waiting for %s on %s:%s ... " "${name}" "${host}" "${port}" + + i=0 + while ! nc -z "${host}" "${port}"; do + sleep 1 + if [ "$i" -gt "$timeout" ]; then + printf "Timed out!\n" + return 1 + fi + i="$((i + 1))" + done + printf "OK\n" +} + +netdata -D > netdata.log 2>&1 & + +wait_for localhost 19999 netdata + +curl -sS http://127.0.0.1:19999/api/v1/info | jq '.version' |