-
Notifications
You must be signed in to change notification settings - Fork 40.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-prometheus/build.gradle
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,15 @@ | ||
plugins { | ||
id "java" | ||
id "org.springframework.boot.conventions" | ||
} | ||
|
||
description = "Spring Boot Prometheus smoke test" | ||
|
||
dependencies { | ||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) | ||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")) | ||
implementation('io.micrometer:micrometer-tracing-bridge-brave') | ||
runtimeOnly('io.micrometer:micrometer-registry-prometheus') | ||
|
||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) | ||
} |
29 changes: 29 additions & 0 deletions
29
...smoke-test-prometheus/src/main/java/smoketest/prometheus/SamplePrometheusApplication.java
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,29 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package smoketest.prometheus; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
@SpringBootApplication | ||
public class SamplePrometheusApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(SamplePrometheusApplication.class, args); | ||
} | ||
|
||
} |
2 changes: 2 additions & 0 deletions
2
...t-smoke-tests/spring-boot-smoke-test-prometheus/src/main/resources/application.properties
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,2 @@ | ||
management.endpoints.web.exposure.include=* | ||
management.tracing.sampling.probability=1.0 |
60 changes: 60 additions & 0 deletions
60
...-test-prometheus/src/test/java/smoketest/prometheus/SamplePrometheusApplicationTests.java
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,60 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package smoketest.prometheus; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.test.autoconfigure.actuate.observability.AutoConfigureObservability; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment; | ||
import org.springframework.boot.test.web.client.TestRestTemplate; | ||
import org.springframework.http.HttpEntity; | ||
import org.springframework.http.HttpHeaders; | ||
import org.springframework.http.HttpMethod; | ||
import org.springframework.http.HttpStatus; | ||
import org.springframework.http.ResponseEntity; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Integration tests for {@link SamplePrometheusApplication}. | ||
* | ||
* @author Moritz Halbritter | ||
*/ | ||
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) | ||
@AutoConfigureObservability | ||
class SamplePrometheusApplicationTests { | ||
|
||
@Autowired | ||
private TestRestTemplate restTemplate; | ||
|
||
@Test | ||
void shouldExportExemplars() { | ||
for (int i = 0; i < 10; i++) { | ||
ResponseEntity<String> response = this.restTemplate.getForEntity("/actuator", String.class); | ||
assertThat(response.getStatusCode()).isEqualTo(HttpStatus.OK); | ||
} | ||
HttpHeaders headers = new HttpHeaders(); | ||
headers.add(HttpHeaders.ACCEPT, "application/openmetrics-text; version=1.0.0; charset=utf-8"); | ||
ResponseEntity<String> metrics = this.restTemplate.exchange("/actuator/prometheus", HttpMethod.GET, | ||
new HttpEntity<>(headers), String.class); | ||
assertThat(metrics.getStatusCode()).isEqualTo(HttpStatus.OK); | ||
assertThat(metrics.getBody()).containsSubsequence("http_client_requests_seconds_count", "span_id", "trace_id"); | ||
} | ||
|
||
} |