Skip to content

Commit 4c0044e

Browse files
renovate[bot]trask
andauthored
chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.132.4 (#7602)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Trask Stalnaker <[email protected]>
1 parent f028e93 commit 4c0044e

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

exporters/prometheus/src/test/java/io/opentelemetry/exporter/prometheus/CollectorIntegrationTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
@SuppressWarnings("NonFinalStaticField")
6060
class CollectorIntegrationTest {
6161

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";
6364

6465
private static final Integer COLLECTOR_HEALTH_CHECK_PORT = 13133;
6566

integration-tests/otlp/src/main/java/io/opentelemetry/integrationtest/OtlpExporterIntegrationTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ abstract class OtlpExporterIntegrationTest {
114114

115115
private static final AttributeKey<String> SERVICE_NAME = AttributeKey.stringKey("service.name");
116116

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";
118119

119120
private static final Integer COLLECTOR_OTLP_GRPC_PORT = 4317;
120121
private static final Integer COLLECTOR_OTLP_HTTP_PORT = 4318;

perf-harness/src/test/java/io/opentelemetry/perf/OtlpPipelineStressTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ public class OtlpPipelineStressTest {
6868

6969
@Container
7070
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"))
7274
.withImagePullPolicy(PullPolicy.alwaysPull())
7375
.withNetwork(network)
7476
.withNetworkAliases("otel-collector")

sdk/trace/src/jmh/java/io/opentelemetry/sdk/trace/ExporterBenchmark.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ private ExporterBenchmark() {}
3636
@State(Scope.Benchmark)
3737
public abstract static class AbstractProcessorBenchmark {
3838
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");
4041
protected static final int OTLP_PORT = 5678;
4142
private static final int HEALTH_CHECK_PORT = 13133;
4243
protected SdkSpanBuilder sdkSpanBuilder;

sdk/trace/src/jmh/java/io/opentelemetry/sdk/trace/SpanPipelineBenchmark.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ private SpanPipelineBenchmark() {}
3838
@State(Scope.Benchmark)
3939
public abstract static class AbstractProcessorBenchmark {
4040
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");
4243
private static final int EXPOSED_PORT = 5678;
4344
private static final int HEALTH_CHECK_PORT = 13133;
4445
private Tracer tracer;

0 commit comments

Comments
 (0)