Skip to content

Commit

Permalink
Fix metrics default port for prometheus
Browse files Browse the repository at this point in the history
  • Loading branch information
bgridley committed Oct 18, 2024
1 parent b7e838d commit bd13f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
env:
API_HOST: 127.0.0.1
API_PORT: 3000
PROMETHEUS_PORT: 9154
PROMETHEUS_PORT: 9153
PGHOST: 127.0.0.1
PGPORT: 5432
PGUSER: postgres
Expand Down
2 changes: 1 addition & 1 deletion src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const schema = Type.Object({
/** Hostname that will be reported to the chainhook node so it can call us back with events */
EXTERNAL_HOSTNAME: Type.String({ default: '127.0.0.1' }),
/** Port in which to serve prometheus metrics */
PROMETHEUS_PORT: Type.Number({ default: 9154 }),
PROMETHEUS_PORT: Type.Number({ default: 9153 }),
/** Port in which to serve the profiler */
PROFILER_PORT: Type.Number({ default: 9119 }),

Expand Down

0 comments on commit bd13f3d

Please sign in to comment.