微服务架构和实践

Hystrix监控的配置详解

2017-08-28  本文已影响0人  billJiang
hystrix监控.png

在微服务架构中,hystrix处理容错外,还有实时监控功能,在服务发生调用时,会将每秒请求数、成功请求数等运行指标记录下来。

本文示例代码:springcloud-demo
其中本文相关的项目有:

通过接口的监控

启动helloworld项目后,访问http://localhost:8020/message后,再次访问http://localhost:8020/hystrix.stream可以看到界面不断地输出监控日志,监控日志里包含了各种指标(各种指标信息请参考官方文档)。

按照同样的步骤操作helloworld-feign项目后,却发现找不到该页面,这是因为需要做一些如下配置:
pom.xml引入hystrix依赖

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix</artifactId>
        </dependency>

在启动类上加上@EnableCircuitBreaker注解,再次执行上述操作,界面不断输出监控日志。

helloworld-feign的hystrix监控日志.png

使用hystrix-board对监控进行图形化展示

上面的日志信息不够直观,借助hystrix-dashboard可对监控进行图形化展示。

    <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
        </dependency>

server:
  port: 8087

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/
  instance:
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${server.port}
spring:
  application:
    name: hystrix-dashboard


20.png

以上的hystrix-dashboard每次只能输入一个监控地址,在微服务架构中往往有很多无法需要监控,该怎么办呢?

可以使用Turbine聚合监控数据,让hystrix-dashboard显示这个聚合数据后的地址。

Turbine聚合监控数据

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-turbine</artifactId>
        </dependency>

server:
  port: 8088

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/
  instance:
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${server.port}
    prefer-ip-address: true
spring:
  application:
    name: hystrix-turbine
turbine:
  app-config: helloworld,helloworldfeign
  cluster-name-expression: "'default'"

注意turbine的配置,这里收集helloworldhellowordfeign日志

使用Turbine聚合hystrix监控数据

以上Turbine聚合微服务的监控数据,然后在hystrix-dashboard展示多个微服务的实时监控数据。 但是Turbine也有它的局限性,比如服务之间无法通信,服务不在Eureka Server上注册,则Turbine无法收集到微服务的日志。那么这种情况下,需要借助消息中间件来解决。

通过消息中间件RabbitMQ收集监控数据

微服务在发生调用时,将监控数据存储到RabbitMQ,监控从RabbitMQ获取数据进行实时展示,这样有利于微服务和监控端进行解耦,可以解决不在服务中心注册的服务的监控数据也可以被收集到。

 docker run -d --name rabbitmq -p 5673:5672 -p 15673:15672 docker.io/rabbitmq:3-management

这样向外暴露5673的连接端口和15673的web端口,默认用户名密码是guest

安装后的RabbitMQ.png
 <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-netflix-hystrix-stream</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rabbit</artifactId>

配置文件中加上连接RabbitMQ的配置

spring:
  rabbitmq:
    host: localhost
    port: 5673
    username: guest
    password: guest

重启helloworld,并在浏览器输入http://localhost:8020/message形成监控数据。

    <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-turbine-stream</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
        </dependency>

启动类上配置@EnableTurbineStream注解
配置文件:

server:
  port: 8089

eureka:
  client:
    serviceUrl:


      defaultZone: http://localhost:8761/eureka/
  instance:
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${server.port}
    prefer-ip-address: true
spring:
  application:
    name: hystrix-turbine-mq
  rabbitmq:
    host: localhost
    port: 5673
    username: guest
    password: guest

这样指明了监控的数据来源。

本文参考了《Spring cloud 与Docker 微服务实战》这本书。

上一篇下一篇

猜你喜欢

热点阅读