-
Notifications
You must be signed in to change notification settings - Fork 5
Support new telemetry schema attribute names #207
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
Open
fpfp100
wants to merge
20
commits into
main
Choose a base branch
from
feature/new-telemetry-schema
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
7564849
Support new telemetry schema attribute names gated by A365_USE_NEW_TE…
jsl517 c79dd4f
Derive TELEMETRY_SDK_VERSION_VALUE from package.json version
jsl517 f3fdb15
Add isolated-module tests for caller attribute key schema mappings
jsl517 64c28a7
Add back gen_ai.caller.tenantid, add isolated schema tests for caller…
jsl517 00cd584
Remove GEN_AI_AGENT_USER_ID_KEY constant
jsl517 7781561
Fix telemetry schema property names to match Common Properties doc
jsl517 a083413
Remove gen_ai.response.id, rename gen_ai.event.content to gen_ai.tool…
jsl517 33c4e2d
Remove unused ServiceEndpoint import from InferenceScope
jsl517 8f648a6
Remove duplicate GEN_AI_EVENT_CONTENT constant, clarify .gitignore co…
jsl517 92172c9
Remove extra attributes and fix name mismatches per A365 schema
jsl517 9e9092c
Add agentBlueprintId to base OpenTelemetryScope (common across all sp…
jsl517 8dae2d1
Fix attribute type mismatches per A365 schema
jsl517 b76aaf7
Move gen_ai.provider.name from base scope to InvokeAgentScope, add pr…
jsl517 6f9e872
Revert pnpm-lock.yaml changes from previous commit
jsl517 a3c7ac0
Merge main into feature/new-telemetry-schema, resolve conflicts
jsl517 140dd15
Address Copilot review: fix copyright headers, move blueprint ID to g…
jsl517 121c0ef
Fix remaining review issues: pass callerDetails to OutputScope base, …
jsl517 c9588c9
Revert pre-existing issue fixes unrelated to this PR
jsl517 d7bf038
Rename BaggageBuilder sourceMetadataName/Description to channelName/c…
jsl517 1798f9b
Revert BaggageBuilder channelName/channelLink rename
jsl517 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,2 @@ | ||
| # The file "src/version.ts" is generated by a prebuild script and should not be committed. | ||
| src/version.ts |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function no longer includes a tenant ID baggage pair (the
GEN_AI_CALLER_TENANT_ID_KEYentry was removed), but the JSDoc above still says it returns pairs for caller identity and tenant. Update the JSDoc to match, or re-add the tenant pair if it’s still required by the schema/back-end.