File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
src/jmh/java/io/opentelemetry/sdk/trace Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,13 @@ dependencies {
50
50
jmh(project(" :exporters:otlp:common" )) {
51
51
isTransitive = false
52
52
}
53
+ jmh(project(" :exporters:common" )) {
54
+ isTransitive = false
55
+ }
56
+ jmh(project(" :exporters:sender:okhttp" ))
57
+ jmh(project(" :sdk-extensions:autoconfigure-spi" )) {
58
+ isTransitive = false
59
+ }
53
60
jmh(" io.opentelemetry.proto:opentelemetry-proto" )
54
61
55
62
jmh(" com.google.guava:guava" )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ private ExporterBenchmark() {}
36
36
@ State (Scope .Benchmark )
37
37
public abstract static class AbstractProcessorBenchmark {
38
38
private static final DockerImageName OTLP_COLLECTOR_IMAGE =
39
- DockerImageName .parse ("otel/opentelemetry-collector-dev :latest" );
39
+ DockerImageName .parse ("otel/opentelemetry-collector-contrib :latest" );
40
40
protected static final int OTLP_PORT = 5678 ;
41
41
private static final int HEALTH_CHECK_PORT = 13133 ;
42
42
protected SdkSpanBuilder sdkSpanBuilder ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ private SpanPipelineBenchmark() {}
38
38
@ State (Scope .Benchmark )
39
39
public abstract static class AbstractProcessorBenchmark {
40
40
private static final DockerImageName OTLP_COLLECTOR_IMAGE =
41
- DockerImageName .parse ("otel/opentelemetry-collector-dev :latest" );
41
+ DockerImageName .parse ("otel/opentelemetry-collector-contrib :latest" );
42
42
private static final int EXPOSED_PORT = 5678 ;
43
43
private static final int HEALTH_CHECK_PORT = 13133 ;
44
44
private Tracer tracer ;
You can’t perform that action at this time.
0 commit comments