使用Collectd+Prometheus+Grafana监控nginx状态

栏目: 数据库 · 发布时间: 5年前

内容简介:在安装Nginx时,如果指定了–with-http_stub_status_module, 就可以使用本文的方法进行监控. 不用担心, 不论是从rpm/apt安装的Nginx, 均自带了该Module.一般的建议是, 在nginx的机器上同时安装Collectd和collectd_exporter, 然后将数据导出到Prometheus(一般位于第三方服务器), 再从Grafana读取Prometheus中的数据.安装Nginx的过程此处略过, 我们需要确定一下Nginx安装了http_stub_stat

在安装Nginx时,如果指定了–with-http_stub_status_module, 就可以使用本文的方法进行监控. 不用担心, 不论是从rpm/apt安装的Nginx, 均自带了该Module.

一般的建议是, 在nginx的机器上同时安装Collectd和collectd_exporter, 然后将数据导出到Prometheus(一般位于第三方服务器), 再从Grafana读取Prometheus中的数据.

1, 配置nginx

安装Nginx的过程此处略过, 我们需要确定一下Nginx安装了http_stub_status_module.

$ sudo nginx -V | grep http_sub_status
nginx version: nginx/1.14.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --user=nginx --group=nginx --prefix=/usr/local/nginx --conf-path=...

配置Nginx启用该module

location /nginx_status {
    stub_status on;
    access_log off;
    allow 127.0.0.1;
    deny all;
}

然后便可以通过http://ip/nginx_status来获取相关状态信息.

$ curl http://127.0.0.1/nginx_status
Active connections: 29
server accepts handled requests
 17750380 17750380 6225361
Reading: 0 Writing: 1 Waiting: 28

2, 安装Collectd

Collectd建议是安装在跟Nginx同一台主机上, 然后只收集此台主机的meteric.

$ yum install epel-release
$ yum install collectd collectd-nginx

$ vim /etc/collectd.conf       #修改如下选项, 这里我添加了CPU/内存的相关配置, 如果不需要可以自行去掉
LoadPlugin cpu
LoadPlugin memory
LoadPlugin write_http

<Plugin cpu>
  ReportByCpu true
  ReportByState true
  ValuesPercentage true
</Plugin>

<Plugin memory>
        ValuesAbsolute true
        ValuesPercentage false
</Plugin>

<Plugin write_http>
  <Node "collectd_exporter">
    URL "http://127.0.0.1:9103/collectd-post"
    Format "JSON"
    StoreRates false
  </Node>
</Plugin>

这里部分文档来自于 collectd_exporter .

$ vim /etc/collectd.d/nginx.conf  #修改如下选项

LoadPlugin nginx                  #LoadPlugin语句在这里
<Plugin "nginx">
    URL "http://localhost/nginx_status"
</Plugin>

然后启动服务

$ sudo systemctl restart collectd && \
sudo systemctl status collectd

$ sudo systemctl enable collectd

3, 安装collectd_exporter

collectd_exporter的作用是把收到到的meteric信息, 以JSON的方式传递给Prometheus(被Prometheus抓取). 同样建议是将collectd_exporter安装在Nginx/Collectd同一台机器上.

$ wget https://github.com/prometheus/collectd_exporter/releases/download/v0.4.0/collectd_exporter-0.4.0.linux-amd64.tar.gz

$ tar zxvf collectd_exporter-0.4.0.linux-amd64.tar.gz

$ nohup collectd_exporter-0.4.0.linux-amd64/collectd_exporter --web.listen-address=":9103" --web.collectd-push-path="/collectd-post" &

这里也可以把collectd_exporter写成系统服务

$ sudo mv collectd_exporter-0.4.0.linux-amd64 /usr/local/collectd_exporter

$ sudo groupadd collectd_exporter
$ sudo useradd -g collectd_exporter -m -d /usr/local/collectd_exporter -s /sbin/nologin collectd_exporter

$ sudo chown -R collectd_exporter:collectd_exporter /usr/local/collectd_exporter
$ sudo vim /etc/systemd/system/collectd_exporter.service  #写入如下内容
[Unit]
Description=Collectd_exporter
After=network-online.target
Requires=network-online.target

[Service]
Type=simple
User=collectd_exporter
ExecStart=/bin/bash -l -c /usr/local/collectd_exporter/collectd_exporter --web.listen-address=":9103" --web.collectd-push-path="/collectd-post"
Restart=on-failure

[Install]
WantedBy=multi-user.target
$ sudo systemctl daemon-reload
$ sudo systemctl restart collectd_exporter.service && sudo systemctl status collectd_exporter.service
$ sudo systemctl enable collectd_exporter.service

确认服务启动成功

$ sudo netstat -anp | grep  :9103
tcp6       0      0 :::9103             :::*            LISTEN      12770/collectd_expo

4, 安装Prometheus

$ wget https://github.com/prometheus/prometheus/releases/download/v2.5.0/prometheus-2.5.0.linux-amd64.tar.gz

$ tar zxvf prometheus-2.5.0.linux-amd64.tar.gz

$ cd prometheus-2.5.0.linux-amd64

$ vim prometheus.yml    #添加2个新的job
global:
  scrape_interval:     10s
  evaluation_interval: 10s
  # scrape_timeout is set to the global default (10s).
alerting:
  alertmanagers:
  - static_configs:
    - targets:
      # - alertmanager:9093
rule_files:

scrape_configs:

  - job_name: 'prometheus'
    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.
    static_configs:
    - targets: ['localhost:9090']

  - job_name: 'nginx_172.17.27.238'
    static_configs:
      - targets: ['172.17.27.238:9103']
        labels:
          instance: '172.17.27.238'
  - job_name: 'nginx_172.17.27.239'
    static_configs:
      - targets: ['172.17.27.239:9103']
        labels:
          instance: '172.17.27.239'

$ nohup ./prometheus &    #运行Prometheus

这里我们可以写成systemd服务

$ cd ..
$ sudo mv prometheus-2.5.0.linux-amd64 /usr/local/prometheus

$ sudo groupadd prometheus
$ sudo useradd -g prometheus -m -d /usr/local/prometheus -s /sbin/nologin prometheus

$ sudo chown -R prometheus:prometheus /usr/local/prometheus

$ sudo vim /etc/systemd/system/prometheus.service  #写入如下内容
[Unit]
Description=prometheus
After=network.target
[Service]
Type=simple
User=prometheus
ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --storage.tsdb.path=/usr/local/prometheus
Restart=on-failure
[Install]
WantedBy=multi-user.target
$ sudo systemctl daemon-reload
$ sudo systemctl restart prometheus.service && \
sudo systemctl status prometheus.service
$ sudo systemctl enable prometheus.service

确认服务启动成功

$ sudo netstat -antp | grep :9090
tcp6       0      0 :::9090           :::*          LISTEN      5313/prometheus

然后是在Grafana里面添加一个Prometheus类型的DataSource

使用Collectd+Prometheus+Grafana监控nginx状态

最终形成的Dashboard

使用Collectd+Prometheus+Grafana监控nginx状态

一些Metric的计算公式

使用Collectd+Prometheus+Grafana监控nginx状态

使用Collectd+Prometheus+Grafana监控nginx状态

使用Collectd+Prometheus+Grafana监控nginx状态


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

算法导论

算法导论

[美] Thomas H. Cormen、Charles E. Leiserson、Ronald L. Rivest、Clifford Stein / 高等教育出版社 / 2002-5 / 68.00元

《算法导论》自第一版出版以来,已经成为世界范围内广泛使用的大学教材和专业人员的标准参考手册。 这本书全面论述了算法的内容,从一定深度上涵盖了算法的诸多方面,同时其讲授和分析方法又兼顾了各个层次读者的接受能力。各章内容自成体系,可作为独立单元学习。所有算法都用英文和伪码描述,使具备初步编程经验的人也可读懂。全书讲解通俗易懂,且不失深度和数学上的严谨性。第二版增加了新的章节,如算法作用、概率分析......一起来看看 《算法导论》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具