prometheus docker部署prometheus和node-exporter及grafana 官方文档 创建配置文件 新建目录prometheus,编辑配置文件prometheus.yml # mkdir /opt/prometheus # cd /opt/prometheus/ # vim ... 2020年6月8日 7,004 1 阅读全文
监控JVM报警规则 添加prometheus配置 # vim prometheus.yml - job_name: 'jvm' scrape_interval: 10s metrics_path: /prometheus... 2020年3月23日 prometheus 4,570 评论 阅读全文
prometheus spring-boot集成prometheus 引导开发自己集成prometheus,尽量别用官方提供的jar包。 spring boot 1.5.13 集成prometheus 引用 jar包 <dependency> <gro... 2020年3月23日 2,235 评论 阅读全文
prometheus Node Exporter for Prometheus Dashboard 中文版 官方地址 https://grafana.com/grafana/dashboards/8919 2020年3月23日 2,098 评论 阅读全文
prometheus Grafana安装 Grafana 我们主要用它来展示 Prometheus 的监控指标的,这样可以直观查看各节点或者服务的状态,本次安装 grafana 我们直接用 yum 安装即可,具体操作也可以参考官方文档 # c... 2020年3月23日 2,232 评论 阅读全文
prometheus blackbox_exporter监控数据 导入blackbox_exporter模板 此模板为9965号模板,数据源选择Prometheus 模板下载地址 https://grafana.com/grafana/dashboards/9965 2020年3月23日 2,804 评论 阅读全文
监控网址状态 监控服务 # vim prometheus.yml - job_name: 'xixi_http2xx_probe' metrics_path: /probe params: module: ### ... 2020年3月23日 prometheus 2,267 评论 阅读全文
监控主机和端口06 添加节点监控 # vim prometheus.yml - job_name: 'node_exporter_采集器' metrics_path: /probe params: module: sta... 2020年3月23日 prometheus 2,577 评论 阅读全文
prometheus 监控SSL证书 添加监控项 # vim prometheus.yml rule_files: - "ssl_expiry.rules.yml" ###添加监控规则 - job_name: 'blackbox' met... 2020年3月23日 3,015 评论 阅读全文
prometheus 模拟告警 修改告警规则值(写入值小于100) # vim rules.yml - name: disk write latency rules: - alert: 磁盘写入延迟 expr: rate(node_... 2020年3月23日 1,602 评论 阅读全文