“Filebeat nginx log”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
 
(未显示同一用户的4个中间版本)
第19行: 第19行:
 
setup.kibana:
 
setup.kibana:
 
   host: "<kibana_url>"
 
   host: "<kibana_url>"
 +
 +
#可能要加这个配置
 +
setup.ilm.overwrite: true
 +
 +
#type: log 那一节
 +
  enabled: true
 +
  
 
Where <password> is the password of the elastic user, <es_url> is the URL of Elasticsearch, and <kibana_url> is the URL of Kibana.
 
Where <password> is the password of the elastic user, <es_url> is the URL of Elasticsearch, and <kibana_url> is the URL of Kibana.
第33行: 第40行:
 
可能要打开 填写这个目录  
 
可能要打开 填写这个目录  
  
 +
vim /etc/filebeat/modules.d/nginx.yml
 
   #var.paths:
 
   #var.paths:
 
     var.paths: ["/var/log/nginx/error.log*"]
 
     var.paths: ["/var/log/nginx/error.log*"]
第55行: 第63行:
  
 
=see also=
 
=see also=
 +
[https://gist.github.com/Friz-zy/0103f68a522758f05163544c3e9017fd nginx_custom_log_with_elk_filebeat.conf]
  
 
+
[https://blog.csdn.net/qq_28834355/article/details/108261508  Filebeat配置module采集nginx日志]
  
 
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

2021年5月23日 (日) 14:25的最新版本


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>"

#可能要加这个配置
setup.ilm.overwrite: true

#type: log 那一节 
  enabled: true


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.

可能要打开 填写这个目录 

vim /etc/filebeat/modules.d/nginx.yml
   #var.paths:
    var.paths: ["/var/log/nginx/error.log*"]

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

nginx_custom_log_with_elk_filebeat.conf

Filebeat配置module采集nginx日志

https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-module-nginx.html

Filebeat配置module采集nginx日志

按月分割nginx访问日志-filebeat配置文件简介

ELK--filebeat nginx模块

filebeat收集nginx的json格式日志

filebeat 6.4.3 采集 nginx日志


通过filebeat、logstash、rsyslog采集nginx日志的几种方式