Replies: 1 comment 5 replies
-
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently working on the otlp transformer for logs.
I see different practices of transforming internal types into otlp shape:
metrics
, everyResourceMetrics
is transformed into oneIResourceMetrics
, whether they have the same resources and scopes or not.trace
,ReadableSpan
s are consolidated into minimalIResourceSpans
s andIScopeSpans
s.The first approach takes more network bandwidth and the second one has more performance overhead. I personally prefer the first one. Is there a guideline about this kind of situations?
Beta Was this translation helpful? Give feedback.
All reactions