• LEK-Introduction


    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!

  • 相关阅读:
    de4dot 反混淆
    GreyMagic
    HearthBuddy 第一次调试
    dnSpy
    asp.net form submit 在Chrome里面看Form提交
    关于并发模型 Actor 和 CSP
    Go语言并发机制初探
    CyclicBarrier的工作原理及其实例
    Java并发编程--CyclicBarrier
    CountDownLatch的简单理解
  • 原文地址:https://www.cnblogs.com/zbhdsfdx-2015/p/4586117.html
Copyright © 2020-2023  润新知