Skip to content

Commit

Permalink
chore: Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklafrance committed Nov 18, 2024
1 parent 2c1eb54 commit a126d0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/guides/setup-honeycomb.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,10 @@ export function App() {
}
```

Now, every trace recorded after the session initialization will include the custom attribute `app.user_id`:
Now, every trace recorded after the session initialization will include the custom attributes `app.user_id`:

:::align-image-left
![](../static/honeycomb-custom-attributes.png){width=204 height=161}
![Custom attributes](../static/honeycomb-custom-attributes.png){width=204 height=161}
:::

## Custom traces
Expand Down
2 changes: 1 addition & 1 deletion samples/endpoints/express-server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import cors from "cors";
import express, { type Request, type Response } from "express";

const sdk = new NodeSDK({
serviceName: "endpoints-sample",
serviceName: "squide-endpoints-sample",
traceExporter: new OTLPTraceExporter({
url: "https://api.honeycomb.io/v1/traces",
headers: {
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 @@ -16,7 +16,7 @@ const runtime = new FireflyRuntime({
loggers: [x => new ConsoleLogger(x)]
});

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

Expand Down

0 comments on commit a126d0b

Please sign in to comment.