Druid 监控配置

Druid 监控配置,第1张

Druid 监控配置 Druid 监控配置信息

在 Spring Boot 的()yml(或)配置文件中对 Druid 内置监控页面、Web-JDBC 关联监控和 Spring 监控等功能进行配置,示例代码如下。

# Druid 监控配置信息
spring:
  datasource:
    druid:
      stat-view-servlet: # StatViewServlet配置,说明请参考DruidWiki,配置_StatViewServlet配置
        enabled: true #是否开启内置监控页面,默认值为 false
        url-pattern: '/druid/*' #StatViewServlet 的映射路径,即内置监控页面的访问地址
        reset-enable: true #是否启用重置按钮
        login-username: admin #内置监控页面的登录页用户名 username
        login-password: admin #内置监控页面的登录页密码 password

      web-stat-filter: # WebStatFilter配置,说明请参考Druid Wiki,配置_配置WebStatFilter。它可以用来监控与采集 web-jdbc 关联监控的数据
        enabled: true #是否开启内置监控中的 Web-jdbc 关联监控的数据
        url-pattern: '/*' #匹配路径
        exclusions: '*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*' #排除路径
        session-stat-enable: true #是否监控session

启动应用程序,访问http://localhost:8080/druid

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5563733.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存