简介

Spring Boot Admin 用于监控基于 Spring Boot 的应用,它是在 Spring Boot Actuator 的基础上提供简洁的可视化 WEB UI。

参考手册地址:http://codecentric.github.io/spring-boot-admin/2.1.1/

Spring Boot Admin 是由服务端Server和客户端Client组成

  • 服务端
    • 1.创建一个springboot工程并添加以下依赖

       1 <dependencies>
      2 <dependency>
      3 <groupId>org.springframework.boot</groupId>
      4 <artifactId>spring-boot-starter-web</artifactId>
      5 </dependency>
      6
      7 <dependency>
      8 <groupId>de.codecentric</groupId>
      9 <artifactId>spring-boot-admin-server</artifactId>
      10 <version>2.1.1</version>
      11 </dependency>
      12
      13 <dependency>
      14 <groupId>de.codecentric</groupId>
      15 <artifactId>spring-boot-admin-server-ui</artifactId>
      16 <version>2.1.1</version>
      17 </dependency>
      18
      19 <dependency>
      20 <groupId>org.springframework.boot</groupId>
      21 <artifactId>spring-boot-starter-security</artifactId>
      22 </dependency>
      23 </dependencies>
    • 2.重写权限控制类(非必要)
       1 @Configuration
      2 public class SecuritySecureConfig extends WebSecurityConfigurerAdapter {
      3 private final String adminContextPath;
      4
      5 public SecuritySecureConfig(AdminServerProperties adminServerProperties) {
      6 this.adminContextPath = adminServerProperties.getContextPath();
      7 }
      8
      9 @Override
      10 protected void configure(HttpSecurity http) throws Exception {
      11 SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
      12 successHandler.setTargetUrlParameter("redirectTo");
      13 successHandler.setDefaultTargetUrl(adminContextPath + "/monitor");
      14
      15 http.authorizeRequests()
      16 .antMatchers(adminContextPath + "/assets/**").permitAll()
      17 .antMatchers(adminContextPath + "/login").permitAll()
      18 .anyRequest().authenticated()
      19 .and()
      20 .formLogin().loginPage(adminContextPath + "/login").successHandler(successHandler).and()
      21 .logout().logoutUrl(adminContextPath + "/logout").and()
      22 .httpBasic().and()
      23 .csrf()
      24 .csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())
      25 .ignoringAntMatchers(
      26 adminContextPath + "/instances",
      27 adminContextPath + "/actuator/**"
      28 );
      29 }
      30 }
       1 @EnableWebSecurity
      2 public class WebSecurityConfig implements WebMvcConfigurer {
      3
      4 @Bean
      5 public UserDetailsService userDetailsService() throws Exception {
      6 InMemoryUserDetailsManager manager = new InMemoryUserDetailsManager();
      7 manager.createUser(User.withDefaultPasswordEncoder().username("root").password("root").roles("administrator").build());
      8 return manager;
      9 }
      10 }
    • 3.启动类添加注解@EnableAdminServer
      1 @SpringBootApplication
      2 @EnableAdminServer
      3 public class AdminServerApplication{
      4
      5 public static void main(String[] args) {
      6 SpringApplication.run(AdminServerApplication.class, args);
      7 }
      8 }
    • 4.配置application.yml
      1 server:
      2 port: 8081
      3
      4 spring:
      5 boot:
      6 admin:
      7 context-path: monitor
    • 5.浏览器访问该项目
  • 客户端
    • 1.在需要被监控的应用里面添加如下依赖(注意版本号要与server端相同)

      1 <dependency>
      2 <groupId>de.codecentric</groupId>
      3 <artifactId>spring-boot-admin-starter-client</artifactId>
      4 <version>2.1.1</version>
      5 </dependency>
    • 2.编辑配置文件(详细属性配置参考手册)
      1 spring.boot.admin.client.url = http://localhost:8081/admin-server/monitor
      2 spring.boot.admin.client.username = root
      3 spring.boot.admin.client.password = root
      4 spring.boot.admin.client.instance.service-base-url=http://localhost:8080
      5 spring.boot.admin.client.instance.name = dida
      6
      7 management.endpoints.web.exposure.include = *
      8 management.endpoint.health.show-details = ALWAYS
  • 刷新服务端

问题记录

  按照上面的操作,我把公司的一个项目配置成了客户端。在我的win10系统电脑上面运行这两个程序是没有问题的。但是当实际部署在linux服务器上面的时候就遇到了问题:我把springbootAdmin的server端部署到了linux服务器(服务器1),把要监控的项目部署到了另一台Linux服务器(服务器2),这两台服务器处于同一个局域网内。运行这两个项目,发现程序server端能够发现这个我的client项目,但是client项目一直处于断开状态。

错误日志

WARN  de.codecentric.boot.admin.client.registration.ApplicationRegistrator.register Line:115 - Failed to register application as Application
(name=dida, managementUrl=http://www.xxx.com:8081/dida/actuator, healthUrl=http://www.xxx.com:8081/dida/actuator/health,serviceUrl=http://www.xxx.com:8081/dida)
at spring-boot-admin ([http://admin.xxx.com:8080/monitor/instances]): 404 null. Further attempts are logged on DEBUG level

经过多次尝试,发现spring.boot.admin.client.url 该项目配置应该配置ip地址 http://172.18.0.188:8080/monitor,而不是域名。

INFO  de.codecentric.boot.admin.client.registration.ApplicationRegistrator.register Line:98 - Application registered itself as 2449779efa06

日志显示注册成功。

待补充 ... ...

 

SpringBoot Admin应用监控搭建的更多相关文章

  1. 关于SpringBoot Admin server 监控注意事项

    当你导入了依赖 <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-bo ...

  2. 使用SpringBoot Admin监控SpringCloud微服务

    spring-boot admin的github地址:https://github.com/codecentric/spring-boot-admin 本文基于SpringCloud的环境和配置上增加 ...

  3. Springboot监控之二:Spring Boot Admin对Springboot服务进行监控

    概述 Spring Boot 监控核心是 spring-boot-starter-actuator 依赖,增加依赖后, Spring Boot 会默认配置一些通用的监控,比如 jvm 监控.类加载.健 ...

  4. 【Springboot】用Springboot Admin监控你的微服务应用

    1 简介 目前,微服务大行其道,各大小公司争相学习模仿,把单体应用拆得七零八落.服务多了,运行的实例多了,给运维人员的压力就更大了.如果有十几个应用,单单做Health Check就已经够费时间的了. ...

  5. Spring-Boot之Admin服务监控-9

    一.Spring Boot Admin用于管理和监控一个或者多个Spring Boot程序.Spring Boot Admin分为Server端和Client 端,Client端可以通过向Http S ...

  6. SpringBoot系列——admin服务监控

    前言 springboot项目部署起来后,如何实时监控项目的运行状况呢?本文记录使用springboot-admin对服务进行监控. springboot-admin介绍:https://codece ...

  7. Spring Cloud第十三篇 | Spring Boot Admin服务监控

    本文是Spring Cloud专栏的第十三篇文章,了解前十二篇文章内容有助于更好的理解本文: Spring Cloud第一篇 | Spring Cloud前言及其常用组件介绍概览 Spring Clo ...

  8. 实战SpringBoot Admin

    长话短说哦,直接查看下文吧 目录 声明 先锋 前提 SpringBoot Admin 介绍 服务端的搭建 客户端的搭建 参数的指南 尾声 声明 见名知意,实战SpringBoot Admin,实战!实 ...

  9. LNMP+zabbix分布式监控搭建及版本升级

    LNMP+zabbix分布式监控搭建需要组件:gcc gcc-c++ openssl* pcre pcre-devel gd gd-devel libjpeg-devel libpng-devel l ...

随机推荐

  1. Australia Trip Memory (>~<)

    近日,掠过空中星尘,喜于"水雾","牛马",晨曦中不情愿地睁开双眼,到达 Australia 这个"人间天堂"那天的场景还似黄粱一梦却已经是 ...

  2. 【Azure 事件中心】在微软云中国区 (Mooncake) 上实验以Apache Kafka协议方式发送/接受Event Hubs消息 (Java版)

    问题描述 事件中心提供 Kafka 终结点,现有的基于 Kafka 的应用程序可将该终结点用作运行你自己的 Kafka 群集的替代方案. 事件中心可与许多现有 Kafka 应用程序配合使用.在Azur ...

  3. 详解MySQL事务原理

    老刘是即将找工作的研究生,自学大数据开发,一路走来,感慨颇深,网上大数据的资料良莠不齐,于是想写一份详细的大数据开发指南.这份指南把大数据的[基础知识][框架分析][源码理解]都用自己的话描述出来,让 ...

  4. 分组背包 例题:hdu 1712 ACboy needs your help

    分组背包需求 有N件物品,告诉你这N件物品的重量以及价值,将这些物品划分为K组,每组中的物品互相冲突,最多选一件,求解将哪些物品装入背包可使这些物品的费用综合不超过背包的容量,且价值总和最大. 解题模 ...

  5. 悬线法——有套路的DP

    例题 P1169 [ZJOI2007]棋盘制作 题目描述 国际象棋是世界上最古老的博弈游戏之一,和中国的围棋.象棋以及日本的将棋同享盛名.据说国际象棋起源于易经的思想,棋盘是一个8×88 \times ...

  6. Codeforces Round #613 (Div. 2) C. Fadi and LCM (数学)

    题意:给你一个正整数\(x\),找两个正整数\(a\),\(b\),使得\(lcm(a,b)=x\),并且\(max(a,b)\)最小. 题解:我们知道,\(lcm(a,b)=a*b/gcd(a,b) ...

  7. Linux系统编程【3.1】——编写ls命令

    ls命令简介 老规矩,直接在终端输入:man ls (有关于man命令的简介可以参考笔者前期博客:Linux系统编程[1]--编写more命令) 可以看到,ls命令的作用是显示目录中的文件名,它带有可 ...

  8. 生成不带签名(BOM)的UTF8格式的XML

    生成XML的一种方法如下: using System.Xml; private void SaveXML(string savePath) { XmlWriterSettings setting = ...

  9. 3.keepalived+脚本实现nginx高可用

    标题 : 3.keepalived+脚本实现nginx高可用 目录 : Nginx 序号 : 3 else exit 0 fi else exit 0 fi - 需要保证脚本有执行权限,可以使用chm ...

  10. 洛谷p1637 三元上升子序列(树状数组

    题目描述 Erwin最近对一种叫"thair"的东西巨感兴趣... 在含有n个整数的序列a1,a2......an中, 三个数被称作"thair"当且仅当i&l ...