本文介绍SpringCloud使用Prometheus,基于Eureka服务发现。
1.Prometheus介绍
在之前写过两篇有关Prometheus使用的文章,如下:
但是如果使用微服务的话,一个服务一个服务的配置似乎太麻烦,Prometheus提供了很多服务发现的机制去统一配置服务,具体可以查看官网介绍:
包含如下这些配置:
从图中可以看出,这里提供了Consul的服务发现机制,没有Eureka的服务发现机制。但是如果Eureka想要使用的话可以通过配置一个适配器的方式,使用consul_sd_config配置的方式使用Prometheus服务发现。
2.Eureka Server
创建一个Eureka Server,这里使用的Eureka最新版本Greenwich.SR1,也就是现在Idea默认创建的,在配置中加入eureka-consul-adapter依赖,pom文件完整内容如下所示。
复制代码 4.0.0 org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE com.dalaoyang springcloud_prometheus_server 0.0.1-SNAPSHOT springcloud_prometheus_server springcloud_prometheus_server 1.8 Greenwich.SR1 org.springframework.cloud spring-cloud-starter-netflix-eureka-server org.springframework.boot spring-boot-starter-test test at.twinformatics eureka-consul-adapter 1.1.0 org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin spring-milestones Spring Milestones https://repo.spring.io/milestone
这里需要注意一下SpringCloud版本与eureka-consul-adapter的对照,如下所示。
剩下的就是一些简单地配置,如配置文件:
server.port=8761eureka.instance.hostname=localhosteureka.client.service-url.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/##禁止自己向自己注册eureka.client.register-with-eureka=falseeureka.client.fetch-registry=false复制代码
启动类加入注解启动注册中心,如下:
@SpringBootApplication@EnableEurekaServer //启动服务注册中心public class SpringcloudPrometheusServerApplication { public static void main(String[] args) { SpringApplication.run(SpringcloudPrometheusServerApplication.class, args); }}复制代码
3.Eureka Client
其实这个也没什么好说的,和普通使用Prometheus一样,当然,也可以使用SOFA-Lookout的模式,这里根据情况自行选择即可,这里以使用micrometer-registry-prometheus依赖为例,完整pom如下所示。
复制代码 4.0.0 org.springframework.boot spring-boot-starter-parent 2.1.3.RELEASE com.dalaoyang springcloud_prometheus_client 0.0.1-SNAPSHOT springcloud_prometheus_client springcloud_prometheus_client 1.8 Greenwich.SR1 org.springframework.boot spring-boot-starter-actuator org.springframework.boot spring-boot-starter-web org.springframework.cloud spring-cloud-starter-netflix-eureka-client org.springframework.boot spring-boot-starter-test test io.micrometer micrometer-registry-prometheus 1.1.3 org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin spring-milestones Spring Milestones https://repo.spring.io/milestone
配置文件如下,端口号8888,如下:
##端口号server.port=8888spring.application.name=springboot_prometheus_clienteureka.client.service-url.defaultZone=http://server1:8761/eureka/management.endpoints.web.exposure.include=*management.metrics.tags.application=${spring.application.name}复制代码
启动类如下:
@SpringBootApplicationpublic class SpringcloudPrometheusClientApplication { public static void main(String[] args) { SpringApplication.run(SpringcloudPrometheusClientApplication.class, args); } @Bean MeterRegistryCustomizerconfigurer( @Value("${spring.application.name}") String applicationName) { return (registry) -> registry.config().commonTags("application", applicationName); }}复制代码
4.Prometheus配置
在Prometheus中配置eureka地址(server),以及需要收集的服务(services)。
- job_name: 'consul-prometheus' scheme: http metrics_path: '/actuator/prometheus' consul_sd_configs: #consul 地址 - server: '127.0.0.1:8761' scheme: http services: [SPRINGBOOT_PROMETHEUS_CLIENT]复制代码
5.测试
分别启动Eureka-Server和Eureka-Client,首先查看Eureka界面,如下:
接下来查看一下Prometheus,如下:
从上图可以看到,服务以及被收集了,接下来查看grafana控制台,如图:
6.源码
源码地址:
Eureka Server :
Eureka Client :