Skip to content

Commit

Permalink
fix: jaeger port
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Jan 18, 2024
1 parent 22683f2 commit 0659f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/opentelemetry.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ debug("Initializing Opentelemetry instrumentation...");
const sdk = new opentelemetry.NodeSDK({
traceExporter: new OTLPTraceExporter({
host: process.env.JAEGER_HOST ?? "jaeger-otel-agent.sri",
port: parseInt(process.env.JAEGER_PORT ?? "6831"),
port: parseInt(process.env.JAEGER_PORT ?? "4317"),
}),
instrumentations: [getNodeAutoInstrumentations()],
resource: new Resource({
Expand Down

0 comments on commit 0659f39

Please sign in to comment.