From a9eff31f49492deb6f1e307523d0c4babb3593bd Mon Sep 17 00:00:00 2001 From: patricklafrance Date: Tue, 5 Nov 2024 21:26:48 -0500 Subject: [PATCH] fix: set dummy api key for honeycomb --- samples/endpoints/express-server/src/index.ts | 4 ++-- samples/endpoints/host/src/bootstrap.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/endpoints/express-server/src/index.ts b/samples/endpoints/express-server/src/index.ts index 5fd579d38..6b95485b0 100644 --- a/samples/endpoints/express-server/src/index.ts +++ b/samples/endpoints/express-server/src/index.ts @@ -11,11 +11,11 @@ const sdk = new NodeSDK({ traceExporter: new OTLPTraceExporter({ url: "https://api.honeycomb.io/v1/traces", headers: { - "x-honeycomb-team": "" + "x-honeycomb-team": "123" } }), instrumentations: [ - getNodeAutoInstrumentations({ + ...getNodeAutoInstrumentations({ "@opentelemetry/instrumentation-fs": { enabled: false } diff --git a/samples/endpoints/host/src/bootstrap.tsx b/samples/endpoints/host/src/bootstrap.tsx index b32eb029b..676d9b801 100644 --- a/samples/endpoints/host/src/bootstrap.tsx +++ b/samples/endpoints/host/src/bootstrap.tsx @@ -17,7 +17,7 @@ const runtime = new FireflyRuntime({ }); registerHoneycombInstrumentation(runtime, "endpoints-sample", [/http:\/\/localhost:1234\.*/], { - apiKey: "" + apiKey: "123" }); await bootstrap(runtime, {