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

Prometheus监控Nginx

时间:2020-07-02 09:28:44      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:grafana   文件   yaml   配置文件   play   strong   zip   javascrip   tps   

在k8s的master节点安装nginx-module-vts模块

解压软件包

unzip nginx-module-vts-master.zip
mv nginx-module-vts-master /usr/local/

 安装nginx

tar zxvf nginx-1.15.7.tar.gz

./configure  --prefix=/usr/local/nginx --with-http_gzip_static_module --with-http_stub_status_module --with-http_ssl_module 
--with-pcre --with-file-aio --with-http_realip_module --add-module=/usr/local/nginx-module-vts-master

编译和编译安装

make && make install

修改nginx配置文件

cat  /usr/local/nginx/conf/nginx.conf

server下添加如下:

location /status {
        vhost_traffic_status_display;
        vhost_traffic_status_display_format html;
        }

 http中添加如下

vhost_traffic_status_zone;

 测试nginx配置文件是否正确

/usr/local/nginx/sbin/nginx -t

如果正确没问题,启动nginx

启动nginx:

/usr/local/nginx/sbin/nginx

 访问k8s的master节点主机ip/status可以看到nginx监控数据

安装nginx-vts-exporter

解压软件包

unzip  nginx-vts-exporter-0.5.zip

 启动服务

mv nginx-vts-exporter-0.5  /usr/local/
chmod +x /usr/local/nginx-vts-exporter-0.5/bin/nginx-vts-exporter

 cd /usr/local/nginx-vts-exporter-0.5/bin

nohup ./nginx-vts-exporter  -nginx.scrape_uri http://192.168.124.16/status/format/json &

 #注意:http://192.168.124.16/status/format/json这个地方的ip地址是nginx服务所在主机的IP地址,nginx-vts-exporter的监听端口是9913

修改prometheus-cfg.yaml文件

添加如下job:

- job_name: ‘nginx‘
scrape_interval: 5s
static_configs:
- targets: [‘192.168.124.16:9913‘]
kubectl apply -f prometheus-cfg.yaml
kubectl delete -f prometheus-deploy.yaml
kubectl apply -f prometheus-deploy.yaml

#注意:

- targets: [‘192.168.124.16:9913‘]这个ip地址是nginx-vts-exporter程序所在机器的ip地址

在grafana界面导入nginx图表

 https://mp.weixin.qq.com/s/SP3r8a6I7wNwfWB9hI5SIg

Prometheus监控Nginx

标签:grafana   文件   yaml   配置文件   play   strong   zip   javascrip   tps   

原文地址:https://www.cnblogs.com/zjz20/p/13222817.html

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