Skip to content
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

Use OTLP collector by default with Jaeger #655

Merged
merged 2 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class ClientResourceIT {
private static final String SERVICE_NAME = "test-traced-service";
private static final String CLIENT_ENDPOINT = "/client";

@JaegerContainer(useOtlpCollector = true)
@JaegerContainer()
static JaegerService jaeger = new JaegerService();

@QuarkusApplication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@
int otlpPort() default 4317;

/**
* Switches between {@link #restPort()} and {@link #otlpPort()}. If set to true, the OTLP collector is used.
* Switches between {@link #restPort()} and {@link #otlpPort()}.
* If set to true, the OTLP collector is used. If set to false, the Jaeger collector is used.
*/
boolean useOtlpCollector() default false;
boolean useOtlpCollector() default true;

String expectedLog() default "server started";

Expand Down