Metricbeat 采集 Nginx 指标

Nginx 状态页可用于分析目前的服务健康状态和负载,如何通过 Elastic Stack 进行一站式的数据采集,数据清洗,数据落地,数据可视化,让数据发挥真正的价值呢?

架构设计

涉及到 Elastic Stack 中 Metricbeat 是用于采集 Nginx 相关的性能指标, Elasticsearch 是用于对于数据落地存储和搜索的引擎, Kibana 是用于对数据可视化的工具。

在 Nginx 中相关的状态页面需要通过打开 http_stub_status_module 这个模块获取,在编译 Nginx 时,通过加上--with-http_stub_status_module 进行打开,对应的访问/nginx_status页面就可以获取的 Nginx 的服务状态了。
在这里插入图片描述

实施方法

以 Docker 环境下为例

Nginx

启动 Nginx 容器,并且将存储卷映射到日志目录
docker run -d --name nginx -p 80:80 nginx:latest

进入容器修改配置
docker exec -it nginx /bin/bash

安装 vim 工具,便于修改配置
apt update; apt install vim

添加 status 页面
vim /etc/nginx/conf.d/default.conf

location /nginx_status { stub_status on; allow all;
}

  
 
  • 1
  • 2
  • 3
  • 4
Metricbeat

启动 Metricbeat 容器
docker run -d --name metricbeat --user=root elastic/metricbeat:7.9.2

进入容器修改配置
docker exec -it metricbeat /bin/bash

修改配置,添加 Elasticsearch 和 Kibana 的主机
vi metricbeat.yml

metricbeat.config.modules:
  path: ${path.config}/modules.d/*.yml
  reload.enabled: false

processors:
  - add_cloud_metadata: ~
  - add_docker_metadata: ~

output.elasticsearch:
  hosts: 'elasticsearch:9200'
  username: 'elastic'
  password: 'xxx'
setup.kibana:
  host: "kibana:5601"

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

启用 Nginx 采集模块
metricbeat modules enable nginx

编辑 Nginx 采集配置
vi modules.d/nginx.yml

- module: nginx
  metricsets: - stubstatus
  period: 10s
  hosts: ["http://172.20.31.151:80/"]
  server_status_path: "nginx_status"

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

设置 Metricbeat 创建 Kibana上的 Index Pattern 和 Dashboard
metricbeat setup

重启 Metricbeat 生效配置
docker restart metricbeat

可视化展示

通过 Kibana 中的 Dashboard 功能
展示目前 Nginx 的连接数等请求数据
在这里插入图片描述

文章来源: yekangming.blog.csdn.net,作者:叶康铭,版权归原作者所有,如需转载,请联系作者。

原文链接:yekangming.blog.csdn.net/article/details/109182161

(完)