Skip to content

Commit

Permalink
fix: set dummy api key for honeycomb
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklafrance committed Nov 6, 2024
1 parent 3f08f94 commit a9eff31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions samples/endpoints/express-server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion samples/endpoints/host/src/bootstrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const runtime = new FireflyRuntime({
});

registerHoneycombInstrumentation(runtime, "endpoints-sample", [/http:\/\/localhost:1234\.*/], {
apiKey: ""
apiKey: "123"
});

await bootstrap(runtime, {
Expand Down

0 comments on commit a9eff31

Please sign in to comment.