|
|
|
@ -20,16 +20,20 @@ import io.micrometer.core.instrument.Clock;
|
|
|
|
|
import io.micrometer.prometheus.PrometheusConfig;
|
|
|
|
|
import io.micrometer.prometheus.PrometheusMeterRegistry;
|
|
|
|
|
import io.prometheus.client.CollectorRegistry;
|
|
|
|
|
import org.junit.Rule;
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration;
|
|
|
|
|
import org.springframework.boot.actuate.metrics.export.prometheus.PrometheusPushGatewayManager;
|
|
|
|
|
import org.springframework.boot.actuate.metrics.export.prometheus.PrometheusScrapeEndpoint;
|
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
|
|
|
|
import org.springframework.boot.test.context.assertj.AssertableApplicationContext;
|
|
|
|
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
|
|
|
|
import org.springframework.boot.test.rule.OutputCapture;
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
|
import org.springframework.test.util.ReflectionTestUtils;
|
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
|
|
|
|
@ -40,6 +44,9 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
*/
|
|
|
|
|
public class PrometheusMetricsExportAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
@Rule
|
|
|
|
|
public final OutputCapture output = new OutputCapture();
|
|
|
|
|
|
|
|
|
|
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
|
|
|
|
.withConfiguration(AutoConfigurations
|
|
|
|
|
.of(PrometheusMetricsExportAutoConfiguration.class));
|
|
|
|
@ -150,9 +157,49 @@ public class PrometheusMetricsExportAutoConfigurationTests {
|
|
|
|
|
AutoConfigurations.of(ManagementContextAutoConfiguration.class))
|
|
|
|
|
.withPropertyValues(
|
|
|
|
|
"management.metrics.export.prometheus.pushgateway.enabled=true")
|
|
|
|
|
.withUserConfiguration(BaseConfiguration.class).run((context) -> {
|
|
|
|
|
assertThat(this.output.toString())
|
|
|
|
|
.doesNotContain("Invalid PushGateway base url");
|
|
|
|
|
hasGatewayURL(context, "http://localhost:9091/metrics/job/");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
@Deprecated
|
|
|
|
|
public void withCustomLegacyPushGatewayURL() {
|
|
|
|
|
this.contextRunner
|
|
|
|
|
.withConfiguration(
|
|
|
|
|
AutoConfigurations.of(ManagementContextAutoConfiguration.class))
|
|
|
|
|
.withPropertyValues(
|
|
|
|
|
"management.metrics.export.prometheus.pushgateway.enabled=true",
|
|
|
|
|
"management.metrics.export.prometheus.pushgateway.base-url=localhost:9090")
|
|
|
|
|
.withUserConfiguration(BaseConfiguration.class).run((context) -> {
|
|
|
|
|
assertThat(this.output.toString())
|
|
|
|
|
.contains("Invalid PushGateway base url")
|
|
|
|
|
.contains("localhost:9090");
|
|
|
|
|
hasGatewayURL(context, "http://localhost:9090/metrics/job/");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void withCustomPushGatewayURL() {
|
|
|
|
|
this.contextRunner
|
|
|
|
|
.withConfiguration(
|
|
|
|
|
AutoConfigurations.of(ManagementContextAutoConfiguration.class))
|
|
|
|
|
.withPropertyValues(
|
|
|
|
|
"management.metrics.export.prometheus.pushgateway.enabled=true",
|
|
|
|
|
"management.metrics.export.prometheus.pushgateway.base-url=https://example.com:8080")
|
|
|
|
|
.withUserConfiguration(BaseConfiguration.class)
|
|
|
|
|
.run((context) -> assertThat(context)
|
|
|
|
|
.hasSingleBean(PrometheusPushGatewayManager.class));
|
|
|
|
|
.run((context) -> hasGatewayURL(context,
|
|
|
|
|
"https://example.com:8080/metrics/job/"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void hasGatewayURL(AssertableApplicationContext context, String url) {
|
|
|
|
|
assertThat(context).hasSingleBean(PrometheusPushGatewayManager.class);
|
|
|
|
|
PrometheusPushGatewayManager gatewayManager = context
|
|
|
|
|
.getBean(PrometheusPushGatewayManager.class);
|
|
|
|
|
Object pushGateway = ReflectionTestUtils.getField(gatewayManager, "pushGateway");
|
|
|
|
|
assertThat(pushGateway).hasFieldOrPropertyWithValue("gatewayBaseURL", url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Configuration(proxyBeanMethods = false)
|
|
|
|
|