summaryrefslogtreecommitdiffstats
path: root/packaging/docker/health.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-06-09 04:52:47 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-06-09 04:52:57 +0000
commit00151562145df50cc65e9902d52d5fa77f89fe50 (patch)
tree2737716802f6725a5074d606ec8fe5422c58a83c /packaging/docker/health.sh
parentReleasing debian version 1.34.1-1. (diff)
downloadnetdata-00151562145df50cc65e9902d52d5fa77f89fe50.tar.xz
netdata-00151562145df50cc65e9902d52d5fa77f89fe50.zip
Merging upstream version 1.35.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/docker/health.sh')
-rwxr-xr-xpackaging/docker/health.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/packaging/docker/health.sh b/packaging/docker/health.sh
index 088a6c0d7..00adf97a6 100755
--- a/packaging/docker/health.sh
+++ b/packaging/docker/health.sh
@@ -4,7 +4,8 @@
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"
+ PORT=${NETDATA_LISTENER_PORT:-19999}
+ NETDATA_HEALTHCHECK_TARGET="http://localhost:${PORT}/api/v1/info"
fi
case "${NETDATA_HEALTHCHECK_TARGET}" in