LEK-Introduction

LEK - logstash + elasticsearch + Kibanalinux

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. elasticsearch

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

 

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

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

          second kibana/bin$ ./kibanaget

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

you also can use logstash connect the elasticsearch,string

         ./logstash -f your conf-file pathit

conf-file's content:ast

     

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

  

you can get it!

本站公眾號
   歡迎關注本站公眾號,獲取更多信息