-
Notifications
You must be signed in to change notification settings - Fork 858
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
Create Jaeger "helper function" to create the export pipeline. #797
Comments
@jkwatson @carlosalberto please provide more details in the description. |
From the last meeting, it was mentioned that details should be found in: open-telemetry/opentelemetry-specification#231 |
It sounds this is the specific part @pavolloffay
|
I think we should have a method like: void installDefaultJaegerExporter(TraceProviderSdk traceProviderSdk) {
// Creates the exporter
// Configures default values for batch SpanProcessor and installs the exporter to it.
// If you want by default to use Disruptor async SpanProcessor, configure and install that as well
// Installs the default configured SpanProcessor to the traceProviderSdk.
} This is to simplify user life when it comes to configure Jaeger, they should not have to configure all batching etc just to get things running (they can do the advanced config if needed). |
@pavolloffay for example even in our examples https://github.com/open-telemetry/opentelemetry-java/blob/master/examples/jaeger/src/main/java/io/opentelemetry/example/JaegerExample.java#L28 we do create a poor export pipeline that exports spans one by one, that method should be replaced by this method that needs to be implemented. |
No description provided.
The text was updated successfully, but these errors were encountered: