Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Elastic Stack 6.0

You're reading from  Learning Elastic Stack 6.0

Product type Book
Published in Dec 2017
Publisher Packt
ISBN-13 9781787281868
Pages 434 pages
Edition 1st Edition
Languages
Authors (2):
Pranav Shukla Pranav Shukla
Profile icon Pranav Shukla
Sharath Kumar M N Sharath Kumar M N
Profile icon Sharath Kumar M N
View More author details

Table of Contents (19) Chapters

Title Page
Credits
Disclaimer
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
Introducing Elastic Stack Getting Started with Elasticsearch Searching-What is Relevant Analytics with Elasticsearch Analyzing Log Data Building Data Pipelines with Logstash Visualizing data with Kibana Elastic X-Pack Running Elastic Stack in Production Building a Sensor Data Analytics Application Monitoring Server Infrastructure

Visualizing the data in Kibana


We have successfully set up the Logstash data pipeline and also loaded some data using the pipeline into Elasticsearch. It is time to explore the data and build a dashboard that will help us gain some insights into the data.

Let's start by doing a sanity check to see if the data is loaded correctly. We can do so by going to Kibana Dev Tools and executing the following query:

GET /sensor_data-*/_search?size=0
{
  "query": {"match_all": {}}
}

This query will search data across all indices matching the sensor_data-* pattern. There should be a good number of records in the index if the data was indexed correctly.

We will cover the following topics:

  • Set up an index pattern in Kibana
  • Build visualizations
  • Create a dashboard using the visualizations

Let us go through each step.

Set up an index pattern in Kibana

Before we can start building visualizations, we need to set up the index pattern for all indexes that we will potentially have for the Sensor Data Analytics application...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}