File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @hyperdx/app " : patch
3+ ---
4+
5+ Allow HyperDX's listen address to be overriden at runtime with the env var HYPERDX_APP_LISTEN_HOSTNAME. The default remains 0.0.0.0 .
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ npx concurrently \
6868 " --kill-others-on-fail" \
6969 " --names=API,APP,ALERT-TASK" \
7070 " PORT=${HYPERDX_API_PORT:- 8000} HYPERDX_APP_PORT=${HYPERDX_APP_PORT:- 8080} node -r ./node_modules/@hyperdx/node-opentelemetry/build/src/tracing ./packages/api/build/index.js" \
71- " cd ./packages/app/packages/app && HOSTNAME='0.0.0.0' HYPERDX_API_PORT=${HYPERDX_API_PORT:- 8000} PORT=${HYPERDX_APP_PORT:- 8080} node server.js" \
71+ " cd ./packages/app/packages/app && HOSTNAME='${HYPERDX_APP_LISTEN_HOSTNAME :- 0.0.0.0} ' HYPERDX_API_PORT=${HYPERDX_API_PORT:- 8000} PORT=${HYPERDX_APP_PORT:- 8080} node server.js" \
7272 " node -r ./node_modules/@hyperdx/node-opentelemetry/build/src/tracing ./packages/api/build/tasks/index.js check-alerts" \
7373 > /var/log/app.log 2>&1 &
7474
Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ npx concurrently \
1717 " --kill-others-on-fail" \
1818 " --names=API,APP,ALERT-TASK" \
1919 " PORT=${HYPERDX_API_PORT:- 8000} HYPERDX_APP_PORT=${HYPERDX_APP_PORT:- 8080} node -r ./node_modules/@hyperdx/node-opentelemetry/build/src/tracing ./packages/api/build/index.js" \
20- " cd ./packages/app/packages/app && HOSTNAME='0.0.0.0' HYPERDX_API_PORT=${HYPERDX_API_PORT:- 8000} PORT=${HYPERDX_APP_PORT:- 8080} node server.js" \
20+ " cd ./packages/app/packages/app && HOSTNAME='${HYPERDX_APP_LISTEN_HOSTNAME :- 0.0.0.0} ' HYPERDX_API_PORT=${HYPERDX_API_PORT:- 8000} PORT=${HYPERDX_APP_PORT:- 8080} node server.js" \
2121 " node -r ./node_modules/@hyperdx/node-opentelemetry/build/src/tracing ./packages/api/build/tasks/index.js check-alerts"
You can’t perform that action at this time.
0 commit comments