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

LEK-Introduction-Installation-Usage

时间:2015-06-18 17:11:17      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

LEK - logstash + elasticsearch + Kibana

Elasticsearch, Logstash, and Kibana — designed to take data from any source and search, analyze, and visualize it in real time, Elastic is helping people make sense of data. 

logStash - collect , enrich , transport data
elasticSearch - search , analyse data in real time
kibana - explore , visualize your data

 

Install LEK is so easy, download the related software, then extract them(tar -zxvf), cd bin, ./xxx, last, you can use them.

usage: first elasticsearch/bin$ ./elasticsearch -d

          second kibana/bin$ ./kibana

           last use you browser to see Kibana Interface(your linux/unix ip:5601)

you also can use logstash connect the elasticsearch,

         ./logstash -f your conf-file path

conf-file‘s content:

     

input {
stdin{}
file{
path => "/home/elc/Documents/zb.log"
type => "string"
}
}
output {
elasticsearch { host => localhost }
stdout { }
}

  

you can get it!

LEK-Introduction-Installation-Usage

标签:

原文地址:http://www.cnblogs.com/zbhdsfdx-2015/p/4586117.html

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