使用filebeat 替代logstash 收集日志redis
2021/10/7 2:10:54
本文主要是介绍使用filebeat 替代logstash 收集日志redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在web服务器
有就停止
[root@es-web1 ~]# systemctl stop logstash
监控单个日志配置:
上传deb包,安装
[root@es-web1 src]# dpkg -i filebeat-7.12.1-amd64.deb
filebeat改配置文件
root@long:~# grep -v "#" /etc/filebeat/filebeat.yml| grep -v "^$" filebeat.inputs: - type: log enabled: True paths: - /apps/nginx/logs/*.log fields: app: nginx group: n124 output.redis: hosts: ["172.31.2.106:6379"] password: "123456" key: "filebeat-m44-log" db: 2 timeout: 5
重启
[root@es-web1 ~]# systemctl restart filebeat
检查redis
root@long:~# redis-cli -h 172.31.2.106 172.31.2.106:6379> auth 123456 172.31.2.106:6379> select 2 172.31.2.106:6379[2]> keys * 1) "filebeat-m44-log" 172.31.2.106:6379[2]> LPOP filebeat-m44-log
logstash配置文件
root@long:~# vim /etc/logstash/conf.d/filebeat-nginx-log-redis.conf input { redis { data_type => "list" key => "filebeat-m44-log" host => "172.31.2.106" port => "6379" db => "2" password => "123456" } } output { if [fields][app] == "nginx-log" { elasticsearch { hosts => ["172.31.2.101:9200"] index => "long-filebeat-nginx-errorlog-%{+YYYY.MM.dd}" }} }
重启
root@long:~# systemctl restart logstash
加入kibana
多个的配置,在原来的基础上添加
root@long:~# vim /etc/filebeat/filebeat.yml - type: log enabled: True paths: - /var/log/nginx/access.log fields: app: nginx-accesslog group: n125 #=========== Filebeat modules ======================
重启
root@long:~# systemctl restart filebeat
停止
root@long:~# systemctl stop logstash
访问Nginx,
检查redis
root@long:~# redis-cli -h 172.31.2.106 172.31.2.106:6379> auth 123456 172.31.2.106:6379[2]> select 3 172.31.2.106:6379[3]> keys * 1) "m44-nginx-log" 172.31.2.106:6379[3]> LPOP m44-nginx-log
配置修改
root@long:~# vim /etc/logstash/conf.d/filebeat-nginx-log-redis.conf input { redis { data_type => "list" key => "m44-nginx-log" host => "172.31.2.106" port => "6379" db => "2" password => "123456" } } output { if [fields][app] == "nginx-errorlog" { elasticsearch { hosts => ["172.31.2.101:9200"] index => "filebeat-nginx-errorlog-%{+YYYY.MM.dd}" }} if [fields][app] == "nginx-accesslog" { elasticsearch { hosts => ["172.31.2.101:9200"] index => "filebeat-nginx-accesslog-%{+YYYY.MM.dd}" }} }
访问Nginx,还有给Nginx写入错误信息到错误日志文件里
访问
[root@es-web1 ~]# curl 172.31.2.107
写入错误信息
[root@es-web1 ~]# echo "error web 1111" >> /apps/nginx/logs/error.log [root@es-web1 ~]# echo "error web 2222" >> /apps/nginx/logs/error.log
写入kibana
略
这篇关于使用filebeat 替代logstash 收集日志redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-08阿里云Redis项目实战入门教程
- 2024-11-08阿里云Redis资料:新手入门与初级使用指南
- 2024-11-08阿里云Redis教程:新手入门及实用指南
- 2024-11-07阿里云Redis学习入门:新手必读指南
- 2024-11-07阿里云Redis学习入门:从零开始的操作指南
- 2024-11-07阿里云Redis学习:初学者指南
- 2024-11-06阿里云Redis入门教程:轻松搭建与使用指南
- 2024-11-02Redis项目实战:新手入门教程
- 2024-10-22Redis入门教程:轻松掌握数据存储与操作
- 2024-10-22Redis缓存入门教程:快速掌握Redis缓存基础知识