We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa0502a commit fa10d00Copy full SHA for fa10d00
modules/grafana/src/main/java/org/testcontainers/grafana/LgtmStackContainer.java
@@ -47,7 +47,7 @@ public LgtmStackContainer(DockerImageName image) {
47
48
@Override
49
protected void containerIsStarted(InspectContainerResponse containerInfo) {
50
- log.info("Access to the Grafana dashboard: {}", getOtlpHttpUrl());
+ log.info("Access to the Grafana dashboard: {}", getGrafanaHttpUrl());
51
}
52
53
public String getOtlpGrpcUrl() {
@@ -61,4 +61,8 @@ public String getOtlpHttpUrl() {
61
public String getPromehteusHttpUrl() {
62
return "http://" + getHost() + ":" + getMappedPort(PROMETHEUS_PORT);
63
64
+
65
+ public String getGrafanaHttpUrl() {
66
+ return "http://" + getHost() + ":" + getMappedPort(GRAFANA_PORT);
67
+ }
68
0 commit comments