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
[...] ]does Honeycomb accepts array attributes on OpenTelemetry? Their documentation mentions that as a valid attribute type, but when I try to send an array of strings from our testing instrumentation library it seems like what I'm getting is a string representation of the array instead. I'm still investigating if this is happening on the Ruby SDK - the string below suggests this might be the case since the string value in there is exactly what Ruby would output if it generated the string representation of the array in question - but I would appreciate any insights there.
Like in #235, when we see an OTLP array we serialize the whole thing rather than add each element as an attribute.
Now, unlike key:value structures, arrays don't have named keys. So we'd have to consider naming each element based on an index. That might mean:
From a customer request:
Like in #235, when we see an OTLP array we serialize the whole thing rather than add each element as an attribute.
Now, unlike key:value structures, arrays don't have named keys. So we'd have to consider naming each element based on an index. That might mean:
Would translate into:
The text was updated successfully, but these errors were encountered: