Skip to content

Commit

Permalink
fix: node-sdk used port
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Dec 18, 2023
1 parent d740e89 commit ba304f2
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 @@ -9,7 +9,7 @@ debug("Initializing Opentelemetry instrumentation...");
const sdk = new opentelemetry.NodeSDK({
traceExporter: new JaegerExporter({
host: process.env.JAEGER_HOST ?? "jaeger-otel-agent.sri",
port: parseInt(process.env.JAEGER_PORT ?? "6831"),
port: parseInt(process.env.JAEGER_PORT ?? "6832"),
}),
instrumentations: [getNodeAutoInstrumentations()],
resource: new Resource({
Expand Down

0 comments on commit ba304f2

Please sign in to comment.