-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating from opentracing Jaeger to opentelemetry #2642
Comments
jaegerConfig.ReporterConfig.BufferFlushInterval |
When using BatchSpanProcessor, you can specify a As for sampling, you can specify a sampler when creating the tracer provider. See this example: https://github.com/open-telemetry/opentelemetry-go/blob/main/example/namedtracer/main.go#L50 |
jaegerConfig. ReporterConfig. BufferFlushInterval This is OK. I can accept it However, I want to set the sampling rules through the remote collector instead of the default setting in the SDK. |
You can do that with one of the included samplers (such as the probalistic one linked above) in opentelemetry-collector-contrib, or by writing your own. |
In the future, do we plan to limit current through the remote like Jaeger
|
I think questions specific to the collector and its configuration would probably be better answered in the opentelemetry-collector repository. |
Can this PR be merged? |
Closing because open-telemetry/opentelemetry-go-contrib#936 has been merged. Please reopen if this was in error. |
I'd like to ask how to set probability sampling through opentelemetry. Previously, it was implemented through Jaeger's collector configuration by the client to request the interface of the agent. Now, opentelemetry will automatically implement this strategy. Don't we need to configure the service name and URL address?
And where can Jaeger's bufferflush interval be set?
The text was updated successfully, but these errors were encountered: