欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Prometheus+ Grafana 监控系列---Nginx 访问监控

程序员文章站 2022-06-04 19:47:01
...

环境:Cenots 7
此篇主要讲通过nginx-module-vts 监控nginx 运行状态,Nginx 安装与插件安装配置这里就不做讲解了

  1. Nginx 配置http 块,注意由于我配置使用了geoip2
 geoip2 /usr/local/nginx/GeoIP/GeoLite2-Country.mmdb {
                $geoip2_data_country_code country iso_code;
        }

         geo $allow-ip{
                default no;
                1.1.1.1 yes;
        }

        map $geoip2_data_country_code $allowed_country 
相关标签: 监控系列