码迷,mamicode.com
首页 > 其他好文 > 详细

ELK搭建

时间:2016-08-24 14:38:52      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

1、安装、启动测试

2、配置、测试

 

因为ELK 版本更新很快,所以网上有些配置方法已经被废弃了。

logstash-2.3.4

elasticsearch-2.3.5.tar

kibana-4.5.4-linux-x64.tar

logstash

启动logstash,后面要加上参数

[root@linux2 ~]# cd /export/servers/logstash-2.3.4/

[root@linux2 logstash-2.3.4]# ./bin/logstash xxxxxxx

 

1、标准输入输出

./bin/logstash -e ‘input{stdin{}}output{stdout{}}‘ 标准输入输出

技术分享

以rubydebug格式输出

./bin/logstash -e ‘input{stdin{}}output{stdout{codec=>rubydebug}}‘

技术分享

配置文件输出 输出到elasticsearch

./bin/logstash agent -f my.conf 指定配置文件

后台启动  nohup ./bin/logstash agent -f my.conf &

my.conf 内容:

input {

file {

path => "/export/servers/apache-tomcat-7.0.70/logs/dolook.log"

codec => "json"

}

}

output {

elasticsearch {hosts => "localhost" }

stdout { codec=> rubydebug }

}

ELK搭建

标签:

原文地址:http://www.cnblogs.com/datadev/p/5802738.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!