-
-
Notifications
You must be signed in to change notification settings - Fork 5
feat(attributes): Add messaging, rpc and gen_ai attributes #482
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
Changes from all commits
3018afd
f721e2b
e0edd7b
cad7dfd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "key": "gen_ai.request.stop_sequences", | ||
| "brief": "List of sequences that the model will use to stop generating further tokens.", | ||
| "type": "string[]", | ||
| "apply_scrubbing": { | ||
| "key": "manual" | ||
| }, | ||
| "is_in_otel": true, | ||
| "example": ["forest", "lived"], | ||
| "visibility": "public", | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [482], | ||
| "description": "Added gen_ai.request.stop_sequences attribute" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { | ||
| "key": "messaging.destination", | ||
| "brief": "The message destination name.", | ||
| "type": "string", | ||
| "apply_scrubbing": { | ||
| "key": "manual" | ||
| }, | ||
| "is_in_otel": false, | ||
| "example": "BestTopic", | ||
| "alias": ["messaging.destination.name"], | ||
| "deprecation": { | ||
| "_status": "backfill", | ||
| "replacement": "messaging.destination.name", | ||
| "reason": "This attribute is being deprecated in favor of messaging.destination.name, which is the OTel-aligned replacement." | ||
| }, | ||
| "visibility": "public", | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [482], | ||
| "description": "Added messaging.destination attribute, deprecated in favor of messaging.destination.name" | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { | ||
| "key": "rpc.system", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we deprecate this in favour of
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah yea, good catch. I think they just haven't done that in the aws instrumentation yet, but will do. |
||
| "brief": "A string identifying the remoting system.", | ||
| "type": "string", | ||
| "apply_scrubbing": { | ||
| "key": "manual" | ||
| }, | ||
| "is_in_otel": true, | ||
| "example": "aws-api", | ||
| "alias": ["rpc.system.name"], | ||
| "deprecation": { | ||
| "_status": "backfill", | ||
| "replacement": "rpc.system.name", | ||
| "reason": "This attribute is being deprecated in favor of rpc.system.name, which is the OTel-aligned replacement." | ||
| }, | ||
| "visibility": "public", | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [482], | ||
| "description": "Added rpc.system attribute, deprecated in favor of rpc.system.name" | ||
| } | ||
| ] | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.