当前位置:   article > 正文

SpringBoot:Actuator监控中心+AdminUI界面管理_actuator admin

actuator admin

一,Actuator + AdminUI服务监控中心介绍

    1,什么是SpringBoot监控中心

       针对微服务器监控、服务器内存变化(堆内存,线程,日志管理等)、检测服务配置连接池是否可用(模拟访问、懒加载)、统计现有Bean(通过Spring容器)、Http接口(@RequestMapping)的一系列数据管理。Actuator监控应用只通过JSON形式返回数据统计结果,没有UI界面处理;AdminUI则内置Actuator服务监控,并对返回JSON数据进行图形化处理展示。

    2,为什么要用SpringBoot监控中心

        Actuator是SpringBoot的一个附加功能,可以帮助应用程序在生产环境运行时的监控和管理。可以使用HTTP的各个请求路径来监管、审计、收集引用的运行情况,特别对于微服务管理十分有意义;

        AdminUI内置了Actuator服务,是对监控服务的图形化界面补充;

二,SpringBoot整合Actuator服务监控

    1,maven依赖引入

  1. <!-- actuator监控 -->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-actuator</artifactId>
  5. </dependency>

    2,application.properties:配置可进行监控的接口,此处配置为全部启动,默认只启用三个接口

  1. ### 监控中心配置, 允许监控所欲接口
  2. management.endpoints.web.exposure.include=*

    3,启动服务,从打印日志中查看启用结果;如下图,说明启用成功,此处应该为15个endPoints,因为我已经引入了AdminUI依赖,默认添加了该部分一个配置点;如果不配置第二步启用全部,则此处显示为2个endPoints

    4,页面访问服务监控,返回结果均为JSON;如下,每一个链接均表示一个功能统计。比如mappings表示全部HTTP接口统计,beans表示Spring容器中的所有注册Bean,threadDump表示系统中的所有线程,health对所有懒加载的服务连接进行虚拟连接测试等等;

三,SpringBoot整合AdminUI界面管理

    1,启动AdminUI界面,需要单独定义AdminUI-Server服务,独立于功能服务之外。所有功能服务作为AdminUI-Client服务连接到Server服务,Server服务检测到连接后对进行监控处理

    2,AdminUI-Server服务

        * 创建一个Maven服务,引入maven依赖

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>springboot_actuator_server</groupId>
  6. <artifactId>springboot.actuator.server</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.1.1.RELEASE</version>
  12. <relativePath/> <!-- lookup parent from repository -->
  13. </parent>
  14. <name>springboot.actuator.server</name>
  15. <!-- FIXME change it to the project's website -->
  16. <url>http://www.example.com</url>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <maven.compiler.source>1.7</maven.compiler.source>
  20. <maven.compiler.target>1.7</maven.compiler.target>
  21. </properties>
  22. <dependencies>
  23. <!-- AdminUI服务端依赖 -->
  24. <dependency>
  25. <groupId>de.codecentric</groupId>
  26. <artifactId>spring-boot-admin-starter-server</artifactId>
  27. <version>2.1.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-webflux</artifactId>
  32. </dependency>
  33. <!-- Spring Boot Actuator对外暴露引用的监控信息, Jolokia提供使用HTTP接口获取json -->
  34. <dependency>
  35. <groupId>org.jolokia</groupId>
  36. <artifactId>jolokia-core</artifactId>
  37. </dependency>
  38. <!-- Spring Boot Actuator依赖 -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-actuator</artifactId>
  42. </dependency>
  43. <!-- 服务包引用1.1.1版本, maven仓库已经不支持下载, 手动引入1.1版本 -->
  44. <dependency>
  45. <groupId>com.googlecode.json-simple</groupId>
  46. <artifactId>json-simple</artifactId>
  47. <version>1.1</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  52. <plugins>
  53. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  54. <plugin>
  55. <artifactId>maven-clean-plugin</artifactId>
  56. <version>3.1.0</version>
  57. </plugin>
  58. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  59. <plugin>
  60. <artifactId>maven-resources-plugin</artifactId>
  61. <version>3.0.2</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <version>3.8.0</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-surefire-plugin</artifactId>
  69. <version>2.22.1</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-jar-plugin</artifactId>
  73. <version>3.0.2</version>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-install-plugin</artifactId>
  77. <version>2.5.2</version>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-deploy-plugin</artifactId>
  81. <version>2.8.2</version>
  82. </plugin>
  83. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  84. <plugin>
  85. <artifactId>maven-site-plugin</artifactId>
  86. <version>3.7.1</version>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-project-info-reports-plugin</artifactId>
  90. <version>3.0.0</version>
  91. </plugin>
  92. </plugins>
  93. </pluginManagement>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>

        * application.properties配置文件添加配置信息,此处主要对端口号进行修改,不与其他进程冲突

server.port=8081

        * 启动类:此处启动类不同于标准的SpringBoot启动类

  1. package com.actuator.server;
  2. import de.codecentric.boot.admin.server.config.EnableAdminServer;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.context.annotation.Configuration;
  6. /**
  7. * @author pj_zhang
  8. * @create 2018-12-30 16:24
  9. **/
  10. @Configuration
  11. @EnableAutoConfiguration
  12. @EnableAdminServer
  13. public class AppApplication {
  14. public static void main(String[] args) {
  15. SpringApplication.run(AppApplication.class, args);
  16. }
  17. }

        * 启动服务后进行页面访问,出现UI界面说明配置成功

    3,AdminUI-Client

        * maven依赖,注意已经引入的依赖不要二次引入

  1. <!-- AdminUI客户端依赖 -->
  2. <dependency>
  3. <groupId>de.codecentric</groupId>
  4. <artifactId>spring-boot-admin-starter-client</artifactId>
  5. <version>2.1.1</version>
  6. </dependency>
  7. <!-- Spring Boot Actuator对外暴露引用的监控信息, Jolokia提供使用HTTP接口获取json -->
  8. <dependency>
  9. <groupId>org.jolokia</groupId>
  10. <artifactId>jolokia-core</artifactId>
  11. </dependency>
  12. <!-- Spring Boot Actuator依赖 -->
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-actuator</artifactId>
  16. </dependency>
  17. <!-- 服务包引用1.1.1版本, maven仓库已经不支持下载, 手动引入1.1版本 -->
  18. <dependency>
  19. <groupId>com.googlecode.json-simple</groupId>
  20. <artifactId>json-simple</artifactId>
  21. <version>1.1</version>
  22. </dependency>

        * application.properties配置服务监控信息指向AdminUI-Server

  1. ### 注册当前服务到AdminUI-Server服务中
  2. spring.boot.admin.client.url=http://127.0.0.1:8081

         * 启动服务后,查看UI界面已经已经监控到注册服务,注意此处当前服务的注册ID

        * 通过点击上面服务连接,默认classpath:index.html文件,static目录为静态资源存放目录,访问会自动解析

    4,AdminUI界面演示

        * 进入界面入口,点击中心实例进入主控制界面

    * 主控制界面。包括刚才通过Actuator演示的所有功能,此处功能已经全部通过UI界面勾画,方便服务监控信息查看;左侧为Actuator功能列表,右侧为具体服务信息

        * 以Beans功能为例,展示所有Spring容器中的Bean,大致跟踪服务展示流程;点击Beans按钮后,服务会通过实例注册ID路由到目标服务进行调用,具体信息获取方式依旧是依靠Actuator提供的服务监控接口进行服务统计

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/101887
推荐阅读
相关标签
  

闽ICP备14008679号