use of uk.gov.ida.hub.samlsoapproxy.client.PrometheusClient in project verify-hub by alphagov.
the class SamlSoapProxyModule method getPrometheusClientService.
@Provides
@Singleton
private PrometheusClient getPrometheusClientService(Environment environment, SamlSoapProxyConfiguration configConfiguration, MatchingServiceConfigProxy matchingServiceConfigProxy, MatchingServiceHealthChecker matchingServiceHealthChecker) {
PrometheusClient prometheusClientService = new PrometheusClient(environment, configConfiguration, matchingServiceConfigProxy, matchingServiceHealthChecker);
prometheusClientService.createMatchingServiceHealthCheckMetrics();
return prometheusClientService;
}
Aggregations