码迷,mamicode.com
首页 > 其他好文 > 详细

Grafana监控JVM

时间:2020-07-10 17:25:02      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:tar   使用配置   dash   lock   ash   type   object   attr   lang   

安装配置Grafana参考
https://testerhome.com/articles/23629

使用配置

  1. 下载jmx_exporter
https://github.com/prometheus/jmx_exporter
  1. 创建jmx_exporter配置文件
vim simple-config.yml

lowercaseOutputLabelNames: true
lowercaseOutputName: true
whitelistObjectNames: ["java.lang:type=OperatingSystem"]
blacklistObjectNames: []
rules:
  - pattern: ‘java.lang<type=OperatingSystem><>(committed_virtual_memory|free_physical_memory|free_swap_space|total_physical_memory|total_swap_space)_size:‘
    name: os_$1_bytes
    type: GAUGE
    attrNameSnakeCase: true
  - pattern: ‘java.lang<type=OperatingSystem><>((?!process_cpu_time)\w+):‘
    name: os_$1
    type: GAUGE
    attrNameSnakeCase: true
  1. 在prometheus配置文件中添加配置
scrape_configs:
  - job_name: ‘java‘
    static_configs:
    - targets: [‘<host>:<port>‘]
  1. 重启prometheus
nohup ./prometheus  > prometheus.log 2>&1 &
  1. 下载并导入dashboards
https://grafana.com/grafana/dashboards/7727
https://grafana.com/grafana/dashboards/8563
注:8563模板对7727有依赖,所以需全部安装,否则不能正常使用

效果图

技术图片
技术图片
技术图片

扫一扫,关注我

技术图片

Grafana监控JVM

标签:tar   使用配置   dash   lock   ash   type   object   attr   lang   

原文地址:https://www.cnblogs.com/hally/p/13279870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!