首頁 > 軟體

prometheus監控nginx的實現

2022-03-21 13:04:25

簡述

監控Nginx主要用到以下三個模組:

  • nginx-module-vts:Nginx virtual host traffic statusmodule,Nginx的監控模組,能夠提供JSON格式的資料產出。
  • nginx-vts-exporter:Simple serverthat scrapes Nginx vts stats and exports them via HTTP for Prometheus consumption。主要用於收集Nginx的監控資料,並給Prometheus提供監控介面,預設埠號9913。
  • Prometheus:監控Nginx-vts-exporter提供的Nginx資料,並儲存在時序資料庫中,可以使用PromQL對時序資料進行查詢和聚合。

1.下載nginx-module-vts模組

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

2.安裝nginx

tar zxvf nginx-1.15.7.tar.gz
cd nginx-1.15.7

./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組態檔,新起一個vhost暴露給server端存取資料:

vim /usr/local/nginx/conf/nginx.conf

server下新增如下:http {
    vhost_traffic_status_zone;  --新增

    ...

    server {

        ...

        location /status {
            vhost_traffic_status_display;  --新增
            vhost_traffic_status_display_format html;  --新增
        }
    }
}

Nginx-module-vts模組介紹:

這是一個Nginx模組,提供對虛擬主機狀態資訊的存取。它包含當前狀態,例如servers, upstreams, caches。這類似於nginx plus的實時活動監視。內建的html和舊版本的演示頁面也保持一致。這個模組主要就是來監控nginx虛擬主機狀態的。

首先,指令vhost_traffic_status_zone是必需的,如果指令vhost_traffic_status_display被設定,可以通過下方式存取:

/status/format/json

請求/status/format/json將用一個包含當前活動資料的json檔案進行響應,以便在實時儀表板和三方監視工具中使用。

/status/format/html

請求/status/format/html將會用一個內建的內建的html儀表板網頁進行響應,該儀表盤的內部請求走/status/format/json

/status/format/jsonp

請求/status/format/jsonp將用一個jsonp回撥函數進行響應,該函數包含用於實時儀表板和三方監視工具的當前活動資料。

/status/format/prometheus

請求/status/format/prometheus將用包含當前活動資料的prometheus檔案來響應。

/status/control

請求/status/control將返回基於查詢語句字串重置或刪除區域後的JSON檔案。更多可以參考Control.

測試nginx組態檔是否正確:
/usr/local/nginx/sbin/nginx -t

如果正確沒問題,啟動nginx
啟動nginx:
/usr/local/nginx/sbin/nginx

此時存取http://IP地址/status可以看到nginx的狀態資訊了。

3.安裝nginx-vts-exporter

https://github.com/hnlq715/nginx-vts-exporter/releases/download/v0.9.1/nginx-vts-exporter-0.9.1.linux-amd64.tar.gz
tar -zxvf nginx-vts-exporter-0.9.1.linux-amd64.tar.gz
 mv nginx-vts-exporter-0.9.1.linux-amd64  /usr/local/nginx-vts-exporter
chmod +x /usr/local/nginx-vts-exporter-0.5/bin/nginx-vts-exporter
cd /usr/local/nginx-vts-exporter/bin
通過nginx-vts-exporter二進位制檔案來執行nginx-vts-exporter程式
nohup ./nginx-vts-exporter  -nginx.scrape_uri http://10.10.xx.xx:80/status/format/json &

#注意:http://10.10.xx.xx/status/format/json這個地方的ip地址是nginx的IP地址
nginx-vts-exporter的監聽埠是9913

也可以使用systemctl管理nginx-vts-exporter程序。

[root@localhost nginx-vts-exporter]# vim /usr/lib/systemd/system/nginx_vts_exporter.service 
[Unit]
Description=prometheus_nginx_vts
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/nginx-vts-exporter/nginx-vts-exporter  -nginx.scrape_uri http://10.10.xx.xx:80/status/format/json
Restart=on-failure

[Install]
WantedBy=multi-user.target
[root@localhost nginx-vts-exporter]# systemctl daemon-reload
[root@localhost nginx-vts-exporter]# systemctl enable  nginx_vts_exporter
[root@localhost nginx-vts-exporter]# systemctl start nginx_vts_exporter
[root@localhost nginx-vts-exporter]# systemctl status nginx_vts_exporter
● nginx_vts_exporter.service - prometheus_nginx_vts
   Loaded: loaded (/usr/lib/systemd/system/nginx_vts_exporter.service; disabled; vendor preset: disabled)
   Active: active (running) since Fri xxxx-xx-xx xx:xx:xx EDT; 4 days ago
 Main PID: 90274 (nginx-vts-expor)
   CGroup: /system.slice/nginx_vts_exporter.service
           └─90274 /usr/local/nginx-vts-exporter/nginx-vts-exporter -nginx.scrape_uri http://10.10.xx.xx:80/status/format/json

4.修改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: [‘10.10.xx.xx:9913’]這個ip地址是nginx-vts-exporter程式所在機器的ip地址

5.在grafana介面匯入nginx json檔案

 到此這篇關於prometheus監控nginx的實現的文章就介紹到這了,更多相關prometheus監控nginx內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com