Add attributes API - #1007
Merged
Merged
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1007 +/- ##
==========================================
+ Coverage 84.00% 84.05% +0.04%
==========================================
Files 50 53 +3
Lines 5171 5274 +103
==========================================
+ Hits 4344 4433 +89
- Misses 673 686 +13
- Partials 154 155 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
giortzisg
commented
May 5, 2025
Comment on lines
+131
to
+132
| // Emit returns a string representation of Value's data. | ||
| func (v Value) Emit() string { |
Contributor
Author
There was a problem hiding this comment.
Not sure if we should implement Emit() orString(), but kept Emit same as otel. However for me it's more natural to be able to get the value directly with fmt.Println(v.Value) rather than v.Value.Emit()
cleptric
approved these changes
May 7, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Implement the attributes API for typesafe values to set on spans.
Usage example
Improvements
allow
SetDatato handle amap[string]Valuefor providing easier access to the span values and also ensure that we support all values provided onSetData. An example of how that would look like is something like: