File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
exporters/prometheus/src/test/java/io/opentelemetry/exporter/prometheus
integration-tests/otlp/src/main/java/io/opentelemetry/integrationtest
perf-harness/src/test/java/io/opentelemetry/perf
sdk/trace/src/jmh/java/io/opentelemetry/sdk/trace Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 59
59
@ SuppressWarnings ("NonFinalStaticField" )
60
60
class CollectorIntegrationTest {
61
61
62
- private static final String COLLECTOR_IMAGE = "otel/opentelemetry-collector-contrib:0.132.2" ;
62
+ private static final String COLLECTOR_IMAGE =
63
+ "otel/opentelemetry-collector-contrib:0.132.4@sha256:bcb6d6d0e56645a75cbce0b7aeb3cf7c304299788bc573080b0351eddc786c9b" ;
63
64
64
65
private static final Integer COLLECTOR_HEALTH_CHECK_PORT = 13133 ;
65
66
Original file line number Diff line number Diff line change @@ -114,7 +114,8 @@ abstract class OtlpExporterIntegrationTest {
114
114
115
115
private static final AttributeKey <String > SERVICE_NAME = AttributeKey .stringKey ("service.name" );
116
116
117
- private static final String COLLECTOR_IMAGE = "otel/opentelemetry-collector-contrib:0.132.2" ;
117
+ private static final String COLLECTOR_IMAGE =
118
+ "otel/opentelemetry-collector-contrib:0.132.4@sha256:bcb6d6d0e56645a75cbce0b7aeb3cf7c304299788bc573080b0351eddc786c9b" ;
118
119
119
120
private static final Integer COLLECTOR_OTLP_GRPC_PORT = 4317 ;
120
121
private static final Integer COLLECTOR_OTLP_HTTP_PORT = 4318 ;
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ public class OtlpPipelineStressTest {
68
68
69
69
@ Container
70
70
public static final GenericContainer <?> collectorContainer =
71
- new GenericContainer <>(DockerImageName .parse ("otel/opentelemetry-collector-contrib:0.132.2" ))
71
+ new GenericContainer <>(
72
+ DockerImageName .parse (
73
+ "otel/opentelemetry-collector-contrib:0.132.4@sha256:bcb6d6d0e56645a75cbce0b7aeb3cf7c304299788bc573080b0351eddc786c9b" ))
72
74
.withImagePullPolicy (PullPolicy .alwaysPull ())
73
75
.withNetwork (network )
74
76
.withNetworkAliases ("otel-collector" )
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ 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-contrib:0.132.2" );
39
+ DockerImageName .parse (
40
+ "otel/opentelemetry-collector-contrib:0.132.4@sha256:bcb6d6d0e56645a75cbce0b7aeb3cf7c304299788bc573080b0351eddc786c9b" );
40
41
protected static final int OTLP_PORT = 5678 ;
41
42
private static final int HEALTH_CHECK_PORT = 13133 ;
42
43
protected SdkSpanBuilder sdkSpanBuilder ;
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ 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-contrib:0.132.2" );
41
+ DockerImageName .parse (
42
+ "otel/opentelemetry-collector-contrib:0.132.4@sha256:bcb6d6d0e56645a75cbce0b7aeb3cf7c304299788bc573080b0351eddc786c9b" );
42
43
private static final int EXPOSED_PORT = 5678 ;
43
44
private static final int HEALTH_CHECK_PORT = 13133 ;
44
45
private Tracer tracer ;
You can’t perform that action at this time.
0 commit comments