“Filebeat nginx log”的版本间的差异
跳到导航
跳到搜索
第55行: | 第55行: | ||
https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-module-nginx.html | https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-module-nginx.html | ||
+ | [https://ngx.hk/2017/12/18/%E6%8C%89%E6%9C%88%E5%88%86%E5%89%B2nginx%E8%AE%BF%E9%97%AE%E6%97%A5%E5%BF%97-filebeat%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6%E7%AE%80%E4%BB%8B.html 按月分割nginx访问日志-filebeat配置文件简介] | ||
[https://www.cnblogs.com/kuku0223/p/8317965.html ELK--filebeat nginx模块] | [https://www.cnblogs.com/kuku0223/p/8317965.html ELK--filebeat nginx模块] |
2021年4月27日 (二) 09:39的版本
目录
ins and config
Download and install Filebeat
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.12.0-amd64.deb sudo dpkg -i filebeat-7.12.0-amd64.deb
Edit the configuration
Modify /etc/filebeat/filebeat.yml to set the connection information: output.elasticsearch: hosts: ["<es_url>"] username: "elastic" password: "<password>" setup.kibana: host: "<kibana_url>" Where <password> is the password of the elastic user, <es_url> is the URL of Elasticsearch, and <kibana_url> is the URL of Kibana.
Enable and configure the nginx module
sudo filebeat modules enable nginx Modify the settings in the /etc/filebeat/modules.d/nginx.yml file.
Start Filebeat
The setup command loads the Kibana dashboards. If the dashboards are already set up, omit this command. sudo filebeat setup sudo service filebeat start
Module status
Module status 右边的 check data 按键 -- > Nginx logs dashboard
systemctl daemon-reload
see also
https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-module-nginx.html