Skip to content

Commit bd13f3d

Browse files
committed
Fix metrics default port for prometheus
1 parent b7e838d commit bd13f3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
env:
5858
API_HOST: 127.0.0.1
5959
API_PORT: 3000
60-
PROMETHEUS_PORT: 9154
60+
PROMETHEUS_PORT: 9153
6161
PGHOST: 127.0.0.1
6262
PGPORT: 5432
6363
PGUSER: postgres

src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const schema = Type.Object({
2828
/** Hostname that will be reported to the chainhook node so it can call us back with events */
2929
EXTERNAL_HOSTNAME: Type.String({ default: '127.0.0.1' }),
3030
/** Port in which to serve prometheus metrics */
31-
PROMETHEUS_PORT: Type.Number({ default: 9154 }),
31+
PROMETHEUS_PORT: Type.Number({ default: 9153 }),
3232
/** Port in which to serve the profiler */
3333
PROFILER_PORT: Type.Number({ default: 9119 }),
3434

0 commit comments

Comments
 (0)