-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add server observability tracing and metrics #1697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+3,571
−741
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
aa65f06
Add observability tracing and metrics
juliusmarminge 772ba77
Merge origin/main into t3code/effect-tracing-observability
juliusmarminge 1f4c8d1
Merge remote-tracking branch 'origin/main' into t3code/effect-tracing…
juliusmarminge 0672418
Improve observability metrics and trace handling
juliusmarminge 0ac582f
Merge origin/main into t3code/effect-tracing-observability
juliusmarminge 9888629
Surface observability config in the settings UI
juliusmarminge 3e9d5fc
Inline RPC tracing helpers in websocket handlers
juliusmarminge ad971db
Track orchestration command outcomes in metrics
juliusmarminge 5fada58
Improve effect tracing across orchestration and telemetry
juliusmarminge 8cc4233
Defer provider metric attributes until routing resolves
juliusmarminge c6b7082
remove metrics from db queries
juliusmarminge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| import { assert, describe, it } from "@effect/vitest"; | ||
|
|
||
| import { compactTraceAttributes, normalizeModelMetricLabel } from "./Attributes.ts"; | ||
|
|
||
| describe("Attributes", () => { | ||
| it("normalizes circular arrays, maps, and sets without recursing forever", () => { | ||
| const array: Array<unknown> = ["alpha"]; | ||
| array.push(array); | ||
|
|
||
| const map = new Map<string, unknown>(); | ||
| map.set("self", map); | ||
|
|
||
| const set = new Set<unknown>(); | ||
| set.add(set); | ||
|
|
||
| assert.deepStrictEqual( | ||
| compactTraceAttributes({ | ||
| array, | ||
| map, | ||
| set, | ||
| }), | ||
| { | ||
| array: ["alpha", "[Circular]"], | ||
| map: { self: "[Circular]" }, | ||
| set: ["[Circular]"], | ||
| }, | ||
| ); | ||
| }); | ||
|
|
||
| it("normalizes invalid dates without throwing", () => { | ||
| assert.deepStrictEqual( | ||
| compactTraceAttributes({ | ||
| invalidDate: new Date("not-a-real-date"), | ||
| }), | ||
| { | ||
| invalidDate: "Invalid Date", | ||
| }, | ||
| ); | ||
| }); | ||
|
|
||
| it("groups GPT-family models under a shared metric label", () => { | ||
| assert.strictEqual(normalizeModelMetricLabel("gpt-4o"), "gpt"); | ||
| assert.strictEqual(normalizeModelMetricLabel("gpt-5.4"), "gpt"); | ||
| assert.strictEqual(normalizeModelMetricLabel("claude-sonnet-4"), "claude"); | ||
| }); | ||
| }); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.