日志搜集平台ELK-filebeat-安装说明

Posted litzhiai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日志搜集平台ELK-filebeat-安装说明相关的知识,希望对你有一定的参考价值。

1.软件安装

jyapp用户登录系统,下载二进制安装包http://op.jieyue.com/softdown/ELK/filebeat-6.3.2-linux-x86_64-nginx-prode.tar.gz

2.nginx 日志修改

第一步 注释以前的日志,添加json格式的日志

vi /usr/local/nginx/conf/nginx.conf  【注释以前的日志,添加json格式的日志

#log_format main
#‘$remote_user [$time_local] $http_x_Forwarded_for $remote_addr $request ‘
#‘$http_x_forwarded_for ‘
#‘$upstream_addr ‘
#‘ups_resp_time: $upstream_response_time ‘
# ‘$status $body_bytes_sent "$http_referer" ‘
#‘request_time: $request_time‘;
log_format main ‘{"@timestamp": "$time_iso8601",‘

‘"servername": "$http_host", ‘
‘"remote_addr": "$remote_addr",‘
‘"referer": "$http_referer",‘
‘"request": "$request",‘
‘"request_time": "$request_time",‘
‘"status": $status,‘
‘"bytes":$body_bytes_sent,‘
‘"agent": "$http_user_agent",‘
‘"x_forwarded": "$http_x_forwarded_for",‘
‘"upstr_addr": "$upstream_addr",‘
‘"upstr_host": "$upstream_http_host",‘
‘"ups_resp_time": "$upstream_response_time" }‘;

第二步 执行nginx 配置检测

/usr/local/nginx/sbin/nginx -t

第三步 热加载服务

/usr/local/nginx/sbin/nginx -s reload

3.配置文件修改说明

技术图片

4.服务的启动停止

cd /home/jyapp/filebeat-6.3.2-linux-x86_64 && sh fbt {start|stop|restart|test}

以上是关于日志搜集平台ELK-filebeat-安装说明的主要内容,如果未能解决你的问题,请参考以下文章

elk-filebeat收集docker容器日志

日志搜集平台ELK-cerebro部署安装

初探ELK-filebeat使用小结

使用Docker搭建ELK日志搜集系统

日志系统ELKStack安装部署

企业运维之 ELK日志分析平台(Logstash)