Damien Mathieu
Damien Mathieu
It's not described in Span Operations: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#span-operations
This kind of goes in the sense of "wide events", where the local root span should be considered special, and hold most of the available attributes rather than have them...
I am using this Go package, which adds a "main span" within the context, to be retrieved at any moment. https://github.com/dmathieu/owe I'm not using the term "root", because it's not...
I already replied on the SDK issue, but while I agree it makes sense for the SDK to support this natively, I also believe this needs a proper specification, as...
Environment variables need to be specified before they can be used in SDKs. https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md
Representing counts as strings seems like an issue that needs fixing in the collector, not in this example.
Sorry, I was wrong. There is no issue in the collector. JSON can't handle int64s, as some serializers wouldn't be able to parse them properly. Passing int64s as strings is...
Yes. But your comment assumes `pdata`/the collector is the only tool to generate OTLP. Other implementations (such as the SDKs) may do ints, not strings. So you need to assume...
Could you fix the conflicts?
This PR is getting out of hand in terms of size. If you want us to be able to review this, you need to keep it small/atomic. Also, this makes...