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 11. Create Super Cool Dashboard from a Web Application

In previous chapters, we saw how we can create a dashboard to monitor key performance indicators. In this chapter, you will learn how to create web application dashboards using application database. Here, we are going to discuss how to pull the data from RDBMS using Logstash and push it to Elasticsearch and then use the data in Kibana to create the dashboard. Basically, I am going to explain how we can use Logstash to pull the data from the RDBMS and then send this data to Elasticsearch, from where we can read it in Kibana to create the dashboard. This approach is quite interesting as we are not making any change in the application to get the data but simply using the JDBC connector of Logstash that provides us the facility to pull the data directly from any RDBMS just by writing the queries after connecting to the database server.

For this type of dashboard creation, we need to create a star schema table and pull the data into...