Book Image

Mastering Kibana 6.x

Book Image

Mastering Kibana 6.x

Overview of this book

Kibana is one of the popular tools among data enthusiasts for slicing and dicing large datasets and uncovering Business Intelligence (BI) with the help of its rich and powerful visualizations. To begin with, Mastering Kibana 6.x quickly introduces you to the features of Kibana 6.x, before teaching you how to create smart dashboards in no time. You will explore metric analytics and graph exploration, followed by understanding how to quickly customize Kibana dashboards. In addition to this, you will learn advanced analytics such as maps, hits, and list analytics. All this will help you enhance your skills in running and comparing multiple queries and filters, influencing your data visualization skills at scale. With Kibana’s Timelion feature, you can analyze time series data with histograms and stats analytics. By the end of this book, you will have created a speedy machine learning job using X-Pack capabilities.
Table of Contents (21 chapters)
Title Page
Copyright and Credits
Packt Upsell
Contributors
Preface
Index

Chapter 13. Creating Monitoring Dashboards Using Beats

In the last chapter, we covered the dashboard creation using Logstash, where we were pulling the data from RDBMS and pushing it to the Elasticsearch cluster. After that, we were showing the dashboard in Kibana by reading the Elasticsearch data. In this chapter, we will cover dashboard creation using Elastic Beats, which also provides us with the option to import built-in dashboards.

There are different Beats that provide us with metrics from different servers, such as the following:

  • Packetbeat: This gives us the details about the network packets. It is a lightweight network packet analyzer that sends packet data to Logstash or Elasticsearch.
  • Filebeat: Filebeat is used to send file data , such as logs. It runs on the server and periodically checks for any change in the log file; when there is any change, it sends the log to Logstash or Elasticsearch.
  • Metricbeat: This is used to collect metrics for memory usage, CPU usage and disk space, and...