prometheus grafana nginx 安装配置和使用

文章目录

前传

prometheus grafana的安装使用https://nanxiang.blog.csdn.net/article/details/135384541

本文说下监控nginx,prometheus grafana nginx 安装配置和使用

Docker 镜像下载地址: https://hub.docker.com

比较好的hub.docker.com///-- https://hub.docker.com/u/bitnami

grafana监控面板:https://grafana.com/grafana/dashboards

prometheus exporter容器

在docker中下载nginx/nginx-prometheus-exporter镜像,并使用该镜像去运行容器

shell 复制代码
docker pull nginx/nginx-prometheus-exporter

docker run -itd -p 9113:9113 --name nginx-exporter  --restart=always -v /etc/localtime:/etc/localtime  nginx/nginx-prometheus-exporter -nginx.scrape-uri http://192.168.1.230/stub_status

192.168.1.230 被监控的nginx服务器的地址

监控nginx

nginx需要加载stub_status监控

shell 复制代码
[root@test230 ~]# nginx -V
nginx version: nginx/1.20.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
built with OpenSSL 1.1.1g FIPS  21 Apr 2020
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-compat --with-debug --with-file-aio --with-google_perftools_module --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_degradation_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_mp4_module --with-http_perl_module=dynamic --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-http_xslt_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-stream_ssl_preread_module --with-threads --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

查看有没有,如果有,去配置下nginx

shell 复制代码
   location /stub_status {
                stub_status on;
                access_log off;
                #allow 127.0.0.1; # 允许本地访问
                #deny all; # 禁止其他IP访问
        }

重要,需要重启nginx

shell 复制代码
[root@test230 ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@test230 ~]# nginx -s stop
[root@test230 ~]# systemctl start nginx

只是nginx -s reload是不生效的,一定要重启

测试监控是否成功

查看nginx是否已经开启监控stub

shell 复制代码
    [root@test230 opt]# curl http://127.0.0.1/stub_status
    Active connections: 6 
    server accepts handled requests
     9702 9702 165810 
    Reading: 0 Writing: 1 Waiting: 5 

在浏览器中输入http://192.168.1.230:9113,如果显示出测量数据就表示成功.

需要注意的是输入的IP地址为nginx/nginx-prometheus-exporter容器所配置的IP地址。

prometheus中添加nginx-exporter

  • job_name: nginx
    static_configs:
  • targets: ['1192.168.1.230:9113']
    #192.168.1.230:9113与第三步测试的地址一至

配置 grafana

需要对应应的nginx/nginx-prometheus-exporter支持的仪表盘(dasdbord)

在grafana仪表盘中导入11280模块

或者自行去找合适的监控dasdbord

这个只是简单的监控,具体负责请自行分析吧。。

外传

复制代码
😜 原创不易,如若本文能够帮助到您的同学
🎉 支持我:关注我+点赞👍+收藏⭐️
📝 留言:探讨问题,看到立马回复
💬 格言:己所不欲勿施于人 扬帆起航、游历人生、永不言弃!🔥
相关推荐
K_i1348 小时前
Ansible自动化部署ECS与Nginx全流程
nginx·自动化·ansible
cui_win10 小时前
Minikube 安装与使用详细指南(Centos7 踩坑版)
docker·kubernetes·minikube·centos7·升级内核
行思理12 小时前
Dockerfile 各指令说明
运维·macos·docker·容器·php
FreeBuf_12 小时前
Docker Compose曝路径遍历漏洞,可致任意覆写文件(CVE-2025-62725)
docker·容器·eureka
dwedwswd13 小时前
亲子娱乐升级!Docker 电视盒子 ADB 安装助手,儿童 APP 一键装满电视
docker·娱乐·电视盒子
半梦半醒*13 小时前
k8s——资源管理
linux·运维·docker·容器·kubernetes·自动化
小Pawn爷13 小时前
构建Django的Web镜像
前端·python·docker·django
梁萌14 小时前
在linux上使用docker搭建ELK日志框架
elk·elasticsearch·docker·kibana·logstash·日志框架
落世繁华14 小时前
Docker快速部署--Mysql一键初始化
运维·mysql·docker·容器·一键部署
胡耀超14 小时前
AI应用开发入门,docker部署 Milvus + GPUStack (Attu+MinIO)的基础入门!
人工智能·docker·ai·大模型·milvus·rag·gpustack