EFK Stack

  • EFK Stack
    • EFK is a collection of three open source products
      • Elastic Search
        • Store Logs(Log Lake)
        • Elastic search is created as state full set.
        • Elastic search will store all logs with indexing.
      • Fluentd
        • For shipping processing and storing logs.
        • Fluentd ships the logs from container to database
        • Fluentd is created as Deamon Set
        • Fluent will scan the logs from all pods and namespaces and send to Elastic Search.
      • Kibana
        • Visualisation tool to monitor logs.
        • Kibana is Created as deployment.
        • Kibana Will read all the logs From ES server and display on browser.
    • EFK stack provides centralised logging in order to identify problems with server or applications.
    • It allows you to search all the logs in a single place.

No comments:

Post a Comment

Spring Boot

What is circular/cyclic dependency in spring boot? When two services are interdependent on each other, that is to start one service, we requ...