Book Image

Kibana 7 Quick Start Guide

By : Anurag Srivastava
Book Image

Kibana 7 Quick Start Guide

By: Anurag Srivastava

Overview of this book

The Elastic Stack is growing rapidly and, day by day, additional tools are being added to make it more effective. This book endeavors to explain all the important aspects of Kibana, which is essential for utilizing its full potential. This book covers the core concepts of Kibana, with chapters set out in a coherent manner so that readers can advance their learning in a step-by-step manner. The focus is on a practical approach, thereby enabling the reader to apply those examples in real time for a better understanding of the concepts and to provide them with the correct skills in relation to the tool. With its succinct explanations, it is quite easy for a reader to use this book as a reference guide for learning basic to advanced implementations of Kibana. The practical examples, such as the creation of Kibana dashboards from CSV data, application RDBMS data, system metrics data, log file data, APM agents, and search results, can provide readers with a number of different drop-off points from where they can fetch any type of data into Kibana for the purpose of analysis or dashboarding.
Table of Contents (9 chapters)

Summary

In this chapter, we looked at how to get data from different sources into Kibana, and then perform data analytics and visualization on it. We covered different ways to get data in Elasticsearch. We saw how Beats, a lightweight data shipper, can be installed on a server to send data. Under Beats, we covered Filebeat, which reads file data, such as Apache logs, system logs, and application logs, and can send them to Elasticsearch directly or using Logstash. Then we configured Metricbeat to read system metrics, such as CPU usage, memory usage, MySQL metrics, and then Packetbeat, using which we can read network packet data to get insights from it.

We covered how Logstash can be used to get data and apply filters before sending it to Elasticsearch. In the first section, we covered how to fetch CSV data using Logstash, where we passed a CSV file as input and specified the columns...