IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringCloud、Dashboard、Turbine监控微服务接口情况 -> 正文阅读

[Java知识库]SpringCloud、Dashboard、Turbine监控微服务接口情况

导语:使用SpringCloud微服务框架,有时会有监控微服务状态的需求,便于及时定位和排查解决问题,SpringCloud自带Dashboard监控组件,可以用来监控指定接口的响应情况:调用成功、调用失败等。而Turbine是在Dashboard的基础上增加了集群监控的功能。
————————————————————————————————————————————
前排提示:本文是我自己写的监控测试,仅包含基本的配置及使用。

微服务组成

integration-eureka-7001:eureka注册中心
integration-zuul-9527:zuul网关路由
integration-dashboard-7999:dashboard监控面板
integration-provider-camp-8004:业务接口
————————————————————————————————————————————
7999负责收集监控信息并展示,95278004是被监控模块

服务配置

7001

和平常使用没区别,不多比比,不会的百度一下eureka配置吧~~

7999

  • 特殊pom依赖
        <!-- hystrix-dashboard 仪表盘 -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
        </dependency>
        
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-turbine</artifactId>
        </dependency>
  • yml配置
server:
  port: 7999
spring:
  application:
    name: hystrix-dashboard-7999
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:7001/eureka
  instance:
    preferIpAddress: true
hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 4000
  dashboard:
    proxy-stream-allow-list: '*'
#config:
#stream:
#maxConcurrentConnections: 50

# 下方为集群配置,不需要集群可以不配
turbine:
  combine-host-port: true #同一主机多个服务使用hostname+port进行区分,此项默认为false,即同一主机多服务会合并成一个服务展示
  aggregator:
    clusterConfig: default # 指定聚合哪些集群,多个使用","分割,默认为default。可使用http://.../turbine.stream?cluster={clusterConfig之一}访问
  appConfig: springcloud-zuul,springcloud-camp-8004 # 配置Eureka中的serviceId列表,表明监控哪些服务
  cluster-name-expression: new String("default")
  • 注解
package com.integration;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.cloud.netflix.turbine.EnableTurbine;

/**
 * @author hupg
 * @date 2022/3/2 11:11
 */
@SpringBootApplication
@EnableEurekaClient
@EnableHystrixDashboard
@EnableCircuitBreaker
@EnableTurbine
public class IntegrationDashboard7999 {
    public static void main(String[] args) {
        SpringApplication.run(IntegrationDashboard7999.class, args);
    }
}

9527

  • 特殊pom依赖
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
  • 特殊yml配置
management:
  endpoints:
    web:
      exposure:
        include: '*'
hystrix:
  command:
    default: # [serviceId] 即zuul中配置的serviceId
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 6000
#      circuitBreaker:
#        requestVolumeThreshold: 10 # 触发熔断超时次数 10次
#        sleepWindowInMilliseconds: 60000 # 熔断多久后尝试放行一次请求【60s】 默认5s
#        errorThresholdPercentage: 50 # 失败率达到多少后触发熔断
#      metrics:
#        rollingStats:
#          timeInMilliseconds: 60000 # 熔断多长时间后,尝试放一次请求进来,默认5秒
  • 特殊注解

@EnableCircuitBreaker

8004

特殊pom、yml、注解与9527一样,不再重复。
————————————————————————————————————————————
需要注意的是,被监控的接口方法需要加@HystrixCommand注解,不加该注解的接口是监控不到的,个人猜测是因为dashboard监控的原理就是用的Hystrix熔断机制,所以不使用Hystrix做熔断限制的接口是监控不到的。

监控页面

以上服务准备好后,先启动7001,最后启动7999

被监控服务启动成功示例

以8004为例:直接访问http://localhost:8004/actuator/hystrix.stream,会一直输出如下监控信息。如果只出现ping:....ping:....ping:....而没有json信息的话,说明没有调用任何被监控的接口,手动调用一次即可;如果调用了还是没有信息,说明没有监控到,需要再检查监控配置是否正确,尤其是@HystrixCommand注解比较容易忘。
在这里插入图片描述

7999启动成功示例

  • 控制台日志:因为turbine.appConfig: springcloud-zuul,springcloud-camp-8004配置了两个监控实例,所有启动时会自动检测监控服务。
2022-03-02 13:33:34.780  INFO 18356 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_HYSTRIX-DASHBOARD-7999/DESKTOP-8I2SJKS:hystrix-dashboard-7999:7999: registering service...
2022-03-02 13:33:34.785  INFO 18356 --- [        Timer-0] o.s.c.n.turbine.EurekaInstanceDiscovery  : Fetching instances for app: springcloud-camp-8004
2022-03-02 13:33:34.785  INFO 18356 --- [        Timer-0] o.s.c.n.turbine.EurekaInstanceDiscovery  : Received instance list for app: springcloud-camp-8004, size=1
2022-03-02 13:33:34.786  INFO 18356 --- [        Timer-0] c.n.t.discovery.InstanceObservable       : Retrieved hosts from InstanceDiscovery: 2
2022-03-02 13:33:34.786  INFO 18356 --- [        Timer-0] c.n.t.discovery.InstanceObservable       : Found hosts that have been previously terminated: 0
2022-03-02 13:33:34.786  INFO 18356 --- [        Timer-0] c.n.t.discovery.InstanceObservable       : Hosts up:2, hosts down: 0
2022-03-02 13:33:34.789  INFO 18356 --- [        Timer-0] c.n.t.monitor.instance.InstanceMonitor   : Url for host: http://192.168.10.67:9527/actuator/hystrix.stream default
2022-03-02 13:33:34.789  INFO 18356 --- [        Timer-0] c.n.t.handler.TurbineDataDispatcher      : 

Just added and starting handler tuple: default_agg_aggClusterEventHandler
2022-03-02 13:33:34.790  INFO 18356 --- [        Timer-0] c.n.turbine.data.AggDataFromCluster      : Per handler dispacher started for: default_agg_aggClusterEventHandler
2022-03-02 13:33:34.791  INFO 18356 --- [        Timer-0] c.n.t.monitor.instance.InstanceMonitor   : Url for host: http://192.168.10.67:8004/actuator/hystrix.stream default
2022-03-02 13:33:34.809  INFO 18356 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 7999 (http) with context path ''
2022-03-02 13:33:34.810  INFO 18356 --- [           main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 7999
2022-03-02 13:33:34.816  INFO 18356 --- [nfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_HYSTRIX-DASHBOARD-7999/DESKTOP-8I2SJKS:hystrix-dashboard-7999:7999 - registration status: 204
  • 页面示例:图中第一个输入框需要输入被监控的地址,一共有三种写法,输入框下方也有示例,分别是:默认集群指定集群单个实例。注意httphttps!!!
    在这里插入图片描述

监控成功示例

  • 全部集群监控页面:下图login接口对应CzryController8004内的接口,另外两个是9527路由下的其他微服务名称,看起来可以监控普通接口和监控zuul路由模块
    在这里插入图片描述
  • 单个服务监控页面
    在这里插入图片描述

监控失败示例

  • 输入监控地址后,出现如下红字提示,说明未监控到指定服务,此时需要排查问题。
  • 1、排查地址是否正确。
  • 2、排查服务是否正常启动。
  • 3、如果1、2都没问题,刷新监控页面,排查后台是否有报错。
  • 4、如果1-3都没问题,排查各种配置,如注册中心是否正确、是否配置接口Hystrix熔断等等。
    在这里插入图片描述

总结

个人感觉,这个监控以下几点有点鸡肋:

  • 监控的接口必须加@HystrixCommand注解。
  • 被监控接口必须至少被调用一次后,才能有监控信息。
  • 集群监控或监控接口较多时,页面会显得很杂乱。

————————————————————————————————————————————

如果某个服务只有几个接口,用这个监控页面应该还可以,把所有接口全部监控到也不会很费劲;但如果是大型的服务,使用这个监控就有点不适用了,性能先不考虑,当接口较多时,这个页面看起来估计会很折磨。。。

Over

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-03 15:57:54  更:2022-03-03 16:00:26 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:49:36-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码