内容简介:在pom.xml中引入以下:
前言
在 秒杀案例 进入实际生产环境中,需要实时或定期监控服务的可用性。Spring Boot 的 actuator(健康监控)功能提供了很多监控所需的接口,可以对应用系统进行配置查看、相关功能统计等。
集成
pom.xml中引入以下:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
application.properties配置如下:
#监控的HTTP端口 (如果不指定,则使用和Server相同的端口) management.port=20886 #忽略拦截 management.security.enabled=false #当前应用信息 info.app.version=v1.0.0 info.app.name=爪哇笔记 info.app.email=345849402@qq.com info.app.url=https://blog.52itstyle.com #开启shutdown远程关闭功能 #访问:http://localhost:20886/shutdown 关闭服务 endpoints.shutdown.enabled=true
详细使用说明:
HTTP方法 | 路径 | 描述 | 鉴权 |
---|---|---|---|
GET | autoconfig | 查看自动配置的使用情况 | true |
GET | configprops | 查看配置属性,包括默认配置 | true |
GET | beans | 查看bean及其关系列表 | true |
GET | dump | 打印线程栈 | true |
GET | env | 查看所有环境变量 | true |
GET | env/{name} | 查看具体变量值 | true |
GET | health | 查看应用健康指标 | false |
GET | info | 查看应用信息 | false |
GET | mappings | 查看所有url映射 | true |
GET | metrics | 查看应用基本指标 | true |
GET | metrics/{name} | 查看具体指标 | true |
POST | shutdown | 关闭应用 | true |
GET | trace | 查看基本追踪信息 | true |
举例 /info:
{ "app": { "url": "https://blog.52itstyle.com", "email": "345849402@qq.com", "name": "爪哇笔记", "version": "v1.0.0" } }
actuator中的 /health 还会对一些集成的第三方应用进行健康检查,比如秒杀系统中用到的 redis 、 MySql 等等。
{ "status": "UP", "jms": { "status": "UP", "provider": "ActiveMQ" }, "diskSpace": { "status": "UP", "total": 150325182464, "free": 74917441536, "threshold": 10485760 }, "redis": { "status": "UP", "version": "3.2.8" }, "db": { "status": "UP", "database": "MySQL", "hello": 1 } }
安全
最重要的安全问题,通过这些endpoints暴露出很多应用的信息,这里总结了一些安全措施:
- 关闭指定的endpoint,在application.properties中配置<name>.enable=false。
- 通过设置management.port=-1关闭endpoint的HTTP访问接口,或者是设置其他的端口,供内部的admin服务访问。
- 设置本地访问,management.address=127.0.0.1,通过设置management.context-path=/admin,可以设置指定的根路径,然后通过Nginx鉴权代理访问。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 微服务监控案例之一
- 宜信开源|案例:UAVStack的慢SQL数据库监控实战
- iOS混合开发库(GICXMLLayout)布局案例分析(1)今日头条案例
- 17个云计算开源案例入围第三届中国优秀云计算开源案例评选
- Spring Boot 2.0 基础案例(十二):基于转账案例,演示事务管理操作
- 基于MNIST数据集实现2层神经网络案例实战-大数据ML样本集案例实战
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
GWT in Action
Robert Hanson、Adam Tacy / Manning Publications / 2007-06-05 / USD 49.99
This book will show Java developers how to use the Google Web Toolkit (GWT) to rapidly create rich web-based applications using their existing skills. It will cover the full development cycle, from ......一起来看看 《GWT in Action》 这本书的介绍吧!