summaryrefslogtreecommitdiffstats
path: root/packaging/docker/health.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/docker/health.sh')
-rwxr-xr-xpackaging/docker/health.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/packaging/docker/health.sh b/packaging/docker/health.sh
new file mode 100755
index 000000000..088a6c0d7
--- /dev/null
+++ b/packaging/docker/health.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# This is the script that gets run for our Docker image health checks.
+
+if [ -z "${NETDATA_HEALTHCHECK_TARGET}" ] ; then
+ # If users didn't request something else, query `/api/v1/info`.
+ NETDATA_HEALTHCHECK_TARGET="http://localhost:19999/api/v1/info"
+fi
+
+case "${NETDATA_HEALTHCHECK_TARGET}" in
+ cli)
+ netdatacli ping || exit 1
+ ;;
+ *)
+ curl -sSL "${NETDATA_HEALTHCHECK_TARGET}" || exit 1
+ ;;
+esac