Skip to content

Commit

Permalink
fix: endpoint selection
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Dec 15, 2023
1 parent 6be0199 commit 7cd447a
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 @@ -11,7 +11,7 @@ const debug = Debug("bte:biothings-explorer:otel-init");
debug("Initializing Opentelemetry instrumentation...");
const sdk = new opentelemetry.NodeSDK({
traceExporter: new OTLPTraceExporter({
url: process.env.JAEGER_URL ?? "http://localhost:4318/v1/traces",
url: (process.env.JAEGER_URL ?? "http://localhost:4318") + "/v1/traces",
}),
instrumentations: [getNodeAutoInstrumentations()],
resource: new Resource({
Expand Down

0 comments on commit 7cd447a

Please sign in to comment.