提交 e04a062c 编写于 作者: 如梦技术's avatar 如梦技术 🐛

调试 mica-prometheus 模块。

上级 44be653e
......@@ -16,9 +16,12 @@
package net.dreamlu.mica.prometheus.sd;
import org.springframework.cloud.client.ConditionalOnBlockingDiscoveryEnabled;
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.annotation.Bean;
import org.springframework.context.annotation.Configuration;
......@@ -28,13 +31,33 @@ import org.springframework.context.annotation.Configuration;
* @author L.cm
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnDiscoveryEnabled
@ConditionalOnBlockingDiscoveryEnabled
public class PrometheusConfiguration {
@Bean
public PrometheusApi prometheusApi(DiscoveryClient discoveryClient) {
return new PrometheusApi(discoveryClient);
@Configuration(proxyBeanMethods = false)
@ConditionalOnBean(DiscoveryClient.class)
@ConditionalOnDiscoveryEnabled
// @ConditionalOnBlockingDiscoveryEnabled
@ConditionalOnProperty(value = "spring.cloud.discovery.blocking.enabled")
public static class PrometheusApiConfiguration {
@Bean
public PrometheusApi prometheusApi(DiscoveryClient discoveryClient) {
return new PrometheusApi(discoveryClient);
}
}
@Configuration(proxyBeanMethods = false)
@ConditionalOnBean(ReactiveDiscoveryClient.class)
@ConditionalOnDiscoveryEnabled
@ConditionalOnReactiveDiscoveryEnabled
public static class ReactivePrometheusApiConfiguration {
@Bean
public ReactivePrometheusApi reactivePrometheusApi(ReactiveDiscoveryClient discoveryClient) {
return new ReactivePrometheusApi(discoveryClient);
}
}
}
/*
* Copyright (c) 2019-2029, Dreamlu 卢春梦 (596392912@qq.com & www.dreamlu.net).
* <p>
* 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
* <p>
* http://www.gnu.org/licenses/lgpl.html
* <p>
* 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.sd;
import org.springframework.cloud.client.ConditionalOnDiscoveryEnabled;
import org.springframework.cloud.client.ConditionalOnReactiveDiscoveryEnabled;
import org.springframework.cloud.client.discovery.ReactiveDiscoveryClient;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* prometheus http sd
*
* @author L.cm
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnDiscoveryEnabled
@ConditionalOnReactiveDiscoveryEnabled
public class ReactivePrometheusConfiguration {
@Bean
public ReactivePrometheusApi prometheusApi(ReactiveDiscoveryClient discoveryClient) {
return new ReactivePrometheusApi(discoveryClient);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册