-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Remove extra labels types #1314
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1314 +/- ##
=======================================
+ Coverage 77.9% 78.0% +0.1%
=======================================
Files 127 127
Lines 6673 6590 -83
=======================================
- Hits 5203 5146 -57
+ Misses 1223 1200 -23
+ Partials 247 244 -3
|
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.
Currently this change would remove support for unspecified types when being passed from code or default to encoding them as strings. It seems like a better user experience if we could provide more relevant transformations of the passed data (e.g. float32
-> float64
, uint
-> int64
). Making sure these transformations are well documented in the functions that will perform them is going to be crucial.
ca6cd9f
to
e4eba8b
Compare
e4eba8b
to
28de50f
Compare
Remove the following labels types: INT32, UINT32, UINT64 and FLOAT32. Fix all extra labels types occurrences in the project. Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com>
Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com>
Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com>
Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com>
Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com>
Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com>
a994d82
to
51125a3
Compare
@MrAlias seems like I can't beat codecov/patch, could we skip this check? |
* Remove extra labels types Remove the following labels types: INT32, UINT32, UINT64 and FLOAT32. Fix all extra labels types occurrences in the project. Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com> * Update CHANGELOG.md Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com> * Delete unused helpers Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com> * Convert passed values into remaining types Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com> * Clarify func description * Fix uint64 convertion Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com> * Fix uint conversion Signed-off-by: Daniil Rutskiy <dstdfx@gmail.com> * Update OTLP exporter label types Co-authored-by: Tyler Yahn <codingalias@gmail.com>
Fixes: #1300