prometheus
习惯了想你
这个作者很懒,什么都没留下…
展开
-
使用elasticsearch_exporter监控elasticsearch集群的状态
https://github.com/justwatchcom/elasticsearch_exporterhttps://github.com/justwatchcom/elasticsearch_exporter/releases/download/v1.1.0/elasticsearch_exporter-1.1.0.linux-amd64.tar.gz-------- 启动参数[root@cygs-09-10.168-jiaogou.cn es-exporter]# ./elasticsear原创 2020-12-21 14:47:23 · 3874 阅读 · 0 评论 -
Pushgateway安装部署和使用
源码地址:https://github.com/prometheus/pushgateway下载安装包:https://github.com/prometheus/pushgateway/releases/download/v1.0.0/pushgateway-1.0.0.linux-amd64.tar.gz解压文件tar -zxvf pushgateway-1.0.0.linux-amd64.tar.gz修改文件名mv pushgateway-1.0.0.linux-amd64 pushgate原创 2020-07-08 15:40:04 · 2489 阅读 · 0 评论 -
Springboot监控整合actuator prometheus
文章目录使用的版本pom配置application配置添加consul自动发现采集pom中添加依赖application添加配置解决health=down的问题一个项目除了完成功能的开发外,程序的性能也是我们需要关注的。那么如何能够获得程序运行状态,各接口的执行耗时呢?springboot 提供了actuator 包来方便的完成这些指标的统计。然后结合prometheus收集存储这些指标值信息,然后通过prometheus这个时序性数据库,就可以方便的查询指标信息了。下面我们就开始进行Springbo原创 2020-06-17 18:19:37 · 5236 阅读 · 0 评论 -
给已经运行的Nginx安装nginx-module-vts模块
文章目录背景环境编译Nginx添加监控模块监控采集exporter采集直接采集QA附录start.shstop.sh背景公司新上线一个监控系统,想对每一个请求的状态进行统计(1xx,2xx,3xx,4xx,5xx,request,response)。便于知道每一个url的请求量以及成功率。经过调研发现,nginx-module-vts 可以实现我们的需求,但是改模块是第三方模板,需要对Ngin...原创 2020-04-24 18:36:05 · 5673 阅读 · 2 评论 -
Nginx安装及使用nginx-vts-exporter监控Nginx状态信息
文章目录准备安装包安装指标释义,{NAMESPACE} 可以在exproter启动的时候指定Server mainServer zonesFilter zonesUpstreams实例访问metrics,返回的数据样例准备安装包nginx-export 官方地址https://github.com/hnlq715/nginx-vts-exporter下载 Nginx-exporterwg...原创 2020-01-03 20:43:33 · 10535 阅读 · 1 评论 -
Pushgateway的安装和使用
文章目录介绍安装使用clienthttpQA介绍pushgateway是Prometheus下的一个组件,用来当做采集对象和Prometheus的代理,Prometheus会定时的从gateway上面pull数据。由于服务部署在容器中,服务的ip会经常的变化,导致Prometheus无法直接拉取到每个target的数据。问题:多个服务的数据,推送到pushgateway,如果push挂了...原创 2019-12-17 18:15:52 · 4980 阅读 · 0 评论