Skip to content

Commit bcc607a

Browse files
fix(docker): change node healthcheck from EKG to Prometheus
The legacy EKG port (12788) is not exposed by default in recent trace-dispatcher configurations. Switching to 12798/metrics ensures db-sync can verify node readiness.
1 parent bd5a9b7 commit bcc607a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
healthcheck:
4444
# Ping the EKG port to see if it responds.
4545
# Assuming if EKG isn't up then the rest of cardano-node isn't either.
46-
test: ["CMD-SHELL", "curl -f 127.0.0.1:12788 || exit 1"]
46+
test: ["CMD-SHELL", "curl -f 127.0.0.1:12798/metrics || exit 1"]
4747
interval: 60s
4848
timeout: 10s
4949
retries: 5

0 commit comments

Comments
 (0)