Grafana监控JVM
Posted hally
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Grafana监控JVM相关的知识,希望对你有一定的参考价值。
安装配置Grafana参考
https://testerhome.com/articles/23629
使用配置
- 下载jmx_exporter
https://github.com/prometheus/jmx_exporter
- 创建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
- 在prometheus配置文件中添加配置
scrape_configs:
- job_name: ‘java‘
static_configs:
- targets: [‘<host>:<port>‘]
- 重启prometheus
nohup ./prometheus > prometheus.log 2>&1 &
- 下载并导入dashboards
https://grafana.com/grafana/dashboards/7727
https://grafana.com/grafana/dashboards/8563
注:8563模板对7727有依赖,所以需全部安装,否则不能正常使用
效果图
扫一扫,关注我
以上是关于Grafana监控JVM的主要内容,如果未能解决你的问题,请参考以下文章
监控利器Prometheus——Prometheus+Grafana监控SpringBoot项目JVM信息
监控利器Prometheus——Prometheus+Grafana监控SpringBoot项目JVM信息
SpringBoot+Prometheus+Grafana 实现自定义监控