-
Notifications
You must be signed in to change notification settings - Fork 572
feat: Support array types for logs and metrics attributes #5314
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
base: master
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
|
|
@@ -217,9 +217,7 @@ class SDKInfo(TypedDict): | |
| Hint = Dict[str, Any] | ||
|
|
||
| AttributeValue = ( | ||
| str | bool | float | int | ||
| # TODO: relay support coming soon for | ||
| # | list[str] | list[bool] | list[float] | list[int] | ||
| str | bool | float | int | list[str] | list[bool] | list[float] | list[int] | ||
| ) | ||
| Attributes = dict[str, AttributeValue] | ||
|
|
||
|
Comment on lines
217
to
223
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. Bug: The Suggested FixUpdate Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews.
Contributor
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. thanks, will address tomorrow
Comment on lines
217
to
223
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. Bug: The functions Suggested FixUpdate Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
|
|
@@ -232,11 +230,10 @@ class SDKInfo(TypedDict): | |
| "boolean", | ||
| "double", | ||
| "integer", | ||
| # TODO: relay support coming soon for: | ||
| # "string[]", | ||
| # "boolean[]", | ||
| # "double[]", | ||
| # "integer[]", | ||
| "string[]", | ||
| "boolean[]", | ||
| "double[]", | ||
| "integer[]", | ||
| ], | ||
| "value": AttributeValue, | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.