Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Kibana 8.x – A Quick Start Guide to Data Analysis

You're reading from  Kibana 8.x – A Quick Start Guide to Data Analysis

Product type Book
Published in Feb 2024
Publisher Packt
ISBN-13 9781803232164
Pages 198 pages
Edition 1st Edition
Languages
Author (1):
Krishna Shah Krishna Shah
Profile icon Krishna Shah

Table of Contents (17) Chapters

Preface 1. Part 1: Exploring Kibana
2. Chapter 1: Introduction to Kibana 3. Chapter 2: Creating Data Views and Introducing Spaces 4. Chapter 3: Discovering the Data through Discover 5. Part 2: Visualizations in Kibana
6. Chapter 4: How About We Visualize? 7. Chapter 5: Powering Visualizations with Near Real-Time Updates 8. Part 3: Analytics on a Dashboard
9. Chapter 6: Data Analysis with Machine Learning 10. Chapter 7: Graph Visualization 11. Chapter 8: Finally, the Dashboard 12. Part 4: Querying on Kibana and Advanced Concepts
13. Chapter 9: ES|QL and Advanced Kibana Concepts 14. Chapter 10: Query DSL and Management through Kibana 15. Index 16. Other Books You May Enjoy

Learning about Query DSL

Query DSL, as we discussed earlier, is a JSON-based DSL that empowers you to construct intricate search queries on the data present in the Elasticsearch cluster. It’s structured like an abstract syntax tree (AST) with two fundamental building blocks: leaf query clauses for pinpointing specific values within fields, and compound query clauses for orchestrating multiple queries using logical combinations or modifying their behavior. The context in which these clauses are used, either query or filter, significantly impacts their behavior. If we are to learn to write queries from scratch, we can investigate querying all the data in a particular index. For example, in MS SQL language, we say, Select * from employees, where employees is a table in the MS SQL database.

Here, in Console, we implement a similar logic to write a DSL query as follows:

GET kibana_sample_data_ecommerce/_search;

Here, kibana_sample_data_ecommerce is an index in Elasticsearch...

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}