Dmitry Ulyanov
Dmitry Ulyanov
The option from @vitkovskii sounds really reasonable. Unfortunately, we just wasting CPU and memory for useless work here and I have no idea what to do next because the number...
https://github.com/open-telemetry/opentelemetry-go/blob/master/exporter/trace/jaeger/uploader.go#L25 Let's add some flexibility here, it would be nice to have additional factory for every provider, like ``` func SetTracer(tracerConfigs, tracerName) { // simplified code :) tracerConfig = tracerConfigs[tracerName]...
Any tracer has its own specific if configuration, e.g. Jaeger has the remote sampling strategy, there is a possibility to send trace data to collectors or agents, etc. Currently, it's...