Robert Pająk
Robert Pająk
Add a function which creates SDK from model. E.g. ```go package config // NewSDK creates SDK providers based on the configuration model. func NewSDK(ctx, context.Context, c *OpenTelemetryConfiguration) (*SDK, error) {}...
Would it not be good to also update the span name? See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md#name _Originally posted by @pellared in https://github.com/open-telemetry/opentelemetry-go-contrib/pull/4017#discussion_r1238213247_
I am wondering why `event` is unexported and why we are not using the value a [bitmask](https://yourbasic.org/golang/bitmask-flag-set-clear/) approach. The same comment applies to the `otelhttp` package. _Originally posted by @pellared...
Reproduces https://github.com/grpc/grpc-go/issues/6947 See: https://github.com/grpc/grpc-go/actions/runs/7834855211/job/21378969259?pr=6971#step:8:85 ``` --- FAIL: TestPeerForClientStatsHandler (0.01s) bug_test.go:82: peer not populated for: *stats.Begin bug_test.go:84: passed for: *stats.OutHeader bug_test.go:82: peer not populated for: *stats.OutPayload bug_test.go:84: passed for: *stats.InHeader bug_test.go:84:...
### What version of gRPC are you using? v1.61.0 ### What version of Go are you using (`go version`)? go version go1.21.4 windows/amd64 ### What operating system (Linux, Windows, …)...
### Description It should be possible (or documented) how to disable Nuke's colorized output. It is handy e.g. when outputing to a file. ### Usage Example One of the popular...
Hello 👋 I am one of OpenTelemetry Go maintainers. Recently I was reviewing https://github.com/open-telemetry/opentelemetry-go-contrib/pull/4090 and I started to think that it may be more beneficial for the community if the...
Towards https://github.com/open-telemetry/opentelemetry-specification/issues/3931 I think it is not a breaking change as this does not change anything in the encoding. The receivers already had to handle/validate attributes with duplicate keys. This...
## What https://github.com/open-telemetry/opentelemetry-specification/blob/e8d5e1416a6a491f0fc26df60a5a2bd41535a8ca/specification/logs/data-model.md#type-mapstring-any should allow having duplicate keys. ## Why ### Performance Checking for duplicates introduces performance overhead which can be undesirable for systems where logging should be high-performant. Changing...