展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭

收集数据服务器

  • 构建1个新项目作为收集数据的服务器

  • pom.xml中导入依赖

<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-server</artifactId>
    <version>2.3.1</version>
</dependency>
  • 启动类添加注解
@EnableAdminServer
  • 配置yml
server.port=8888
  • 在被监控的项目中配置如下
# pom
<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-client</artifactId>
    <version>2.3.1</version>
</dependency>

# yml
spring:
  boot:
    admin:
      client:
        url: http://localhost:8888    # 服务端地址
        instance:
          prefer-ip: true  #使用ip注册进来

management:
  endpoints:
    enabled-by-default: true  #默认开启所有监控端点  true
    web:
      exposure:
        include: '*' # 以web方式暴露所有端点
  • 启动客户端和服务端
posted @ 2022-07-31 22:09  DogLeftover  阅读(51)  评论(0编辑  收藏  举报