net.dreamlu.mica.prometheus.api.config.PrometheusConfiguration Maven / Gradle / Ivy
Show all versions of mica-prometheus Show documentation
/*
* Copyright (c) 2019-2029, Dreamlu 卢春梦 ([email protected] & www.dreamlu.net).
*
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/lgpl.html
*
* 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 net.dreamlu.mica.prometheus.api.config;
import net.dreamlu.mica.prometheus.api.core.PrometheusApi;
import net.dreamlu.mica.prometheus.api.core.ReactivePrometheusApi;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.cloud.client.ConditionalOnDiscoveryEnabled;
import org.springframework.cloud.client.ConditionalOnReactiveDiscoveryEnabled;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.cloud.client.discovery.ReactiveDiscoveryClient;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.annotation.Bean;
import org.springframework.core.env.Environment;
/**
* prometheus http sd
*
* @author L.cm
*/
@AutoConfiguration
public class PrometheusConfiguration {
@AutoConfiguration
@ConditionalOnBean(DiscoveryClient.class)
@ConditionalOnDiscoveryEnabled
// @ConditionalOnBlockingDiscoveryEnabled
@ConditionalOnProperty(value = "spring.cloud.discovery.blocking.enabled")
public static class PrometheusApiConfiguration {
@Bean
public PrometheusApi prometheusApi(Environment environment,
DiscoveryClient discoveryClient,
ApplicationEventPublisher eventPublisher) {
String[] activeProfiles = environment.getActiveProfiles();
String activeProfile = activeProfiles.length > 0 ? activeProfiles[0] : null;
return new PrometheusApi(activeProfile, discoveryClient, eventPublisher);
}
}
@AutoConfiguration
@ConditionalOnBean(ReactiveDiscoveryClient.class)
@ConditionalOnDiscoveryEnabled
@ConditionalOnReactiveDiscoveryEnabled
public static class ReactivePrometheusApiConfiguration {
@Bean
public ReactivePrometheusApi reactivePrometheusApi(Environment environment,
ReactiveDiscoveryClient discoveryClient,
ApplicationEventPublisher eventPublisher) {
String[] activeProfiles = environment.getActiveProfiles();
String activeProfile = activeProfiles.length > 0 ? activeProfiles[0] : null;
return new ReactivePrometheusApi(activeProfile, discoveryClient, eventPublisher);
}
}
}