-
Notifications
You must be signed in to change notification settings - Fork 869
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
56 changes: 56 additions & 0 deletions
56
smoke-tests/src/test/groovy/io/opentelemetry/smoketest/PrometheusSmokeTest.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.smoketest | ||
|
||
import io.opentelemetry.testing.internal.armeria.client.WebClient | ||
import java.time.Duration | ||
import spock.lang.IgnoreIf | ||
|
||
import static io.opentelemetry.smoketest.TestContainerManager.useWindowsContainers | ||
|
||
@IgnoreIf({ useWindowsContainers() }) | ||
class PrometheusSmokeTest extends SmokeTest { | ||
private static final int PROMETHEUS_PORT = 9090 | ||
|
||
protected String getTargetImage(String jdk) { | ||
"ghcr.io/open-telemetry/opentelemetry-java-instrumentation/smoke-test-spring-boot:jdk$jdk-20211213.1570880324" | ||
} | ||
|
||
@Override | ||
protected Map<String, String> getExtraEnv() { | ||
return Map.of("OTEL_METRICS_EXPORTER", "prometheus", "OTEL_EXPORTER_PROMETHEUS_PORT", PROMETHEUS_PORT.toString()) | ||
} | ||
|
||
@Override | ||
protected TargetWaitStrategy getWaitStrategy() { | ||
return new TargetWaitStrategy.Log(Duration.ofMinutes(1), ".*Started SpringbootApplication in.*") | ||
} | ||
|
||
protected List<ResourceMapping> getExtraPorts() { | ||
return [PROMETHEUS_PORT] | ||
} | ||
|
||
def "Should export metrics"(int jdk) { | ||
setup: | ||
startTarget(jdk) | ||
|
||
when: | ||
client().get("/greeting").aggregate().join() | ||
|
||
then: | ||
def prometheusClient = WebClient.of("h1c://localhost:${containerManager.getTargetMappedPort(9090)}") | ||
def prometheusData = prometheusClient.get("/").aggregate().join().contentUtf8() | ||
|
||
prometheusData.contains("runtime_jvm_memory_pool") | ||
|
||
cleanup: | ||
stopTarget() | ||
|
||
where: | ||
jdk << [8, 11, 17] | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters