主题
监控
监控请求TPS,请求耗时,jvm等信息
请求统计配置
如果需要接口请求统计,需要配置以下配置
yaml
wueasy:
filter:
metrics:
enabled: true #是否启用,默认false
监控配置
暴露端点信息
yaml
# 暴露监控端点 配置
management:
endpoints:
# web端点配置属性
web:
# 默认端点前缀为/actuator,可修改
base-path: /actuator
exposure:
# 包含端点,全用直接使用'*'即可,多个场景['prometheus','health']
include: '*'
# 排除端点
exclude: [ 'shutdown' ]
# JMX 端点配置属性
jmx:
exposure:
include: '*'
exclude: [ 'shutdown' ]
server:
port: 8088
metrics:
tags:
application: ${spring.application.name}
endpoint:
requeststats:
cache:
time-to-live: 5s
访问地址
访问地址为:http://{host}:{port}/actuator/stats.html