You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I came across a minor feature missing in TracingUtils. XRay SDK supports recording annotations as:
Keys – Up to 500 alphanumeric characters. No spaces or symbols except underscores.
Values – Up to 1,000 Unicode characters.
With key being a string and value can be a Boolean, Number, or String value.
Is your feature request related to a problem? Please describe.
I came across a minor feature missing in
TracingUtils
. XRay SDK supports recording annotations as:With
key
being a string andvalue
can be a Boolean, Number, or String value.However,
TracingUtils
just supports value as String, there is no support for Number, Boolean.Describe the solution you'd like
Adding support for
Number
&Boolean
like:Describe alternatives you've considered
This is not a blocker because I can use
String.valueOf(myIntValue)
Additional context
The text was updated successfully, but these errors were encountered: