Skip to content

Commit eb281e0

Browse files
committed
update grafana lgtm to 0.9.0
1 parent d3a8d95 commit eb281e0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extensions/observability-devservices/common/src/main/java/io/quarkus/observability/common/ContainerConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public final class ContainerConstants {
44

55
// Images
66

7-
public static final String LGTM = "docker.io/grafana/otel-lgtm:0.8.2";
7+
public static final String LGTM = "docker.io/grafana/otel-lgtm:0.9.0";
88

99
// Ports
1010

extensions/observability-devservices/testcontainers/src/main/java/io/quarkus/observability/testcontainers/LgtmContainer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ protected WaitStrategy waitStrategy() {
131131
.withStartupTimeout(config.timeout())
132132
.withStrategy(super.waitStrategy())
133133
.withStrategy(
134-
Wait.forLogMessage(".*The OpenTelemetry collector and the Grafana LGTM stack are up and running.*", 1)
134+
Wait.forLogMessage(".*(The OpenTelemetry collector and the Grafana LGTM stack are up and running|" +
135+
"All components are up and running).*", 1)
135136
.withStartupTimeout(config.timeout()));
136137
}
137138

0 commit comments

Comments
 (0)