Show Menu
Cheatography

Kibana Cheat Sheet (DRAFT) by

common lucene terms for kibana

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Operators

AND
OR
NOT
TO
+
-
(
[
{
_exists_: Field
NOT _exist­s_:­Field
 

Descri­ption

only results that include both X AND Y
only results that Include either X OR Y
only results that do NOT include X
 
X must be present in document text
X must not be present in document text
"­Gro­uping of values, typically used to apply more advanced boolean logic"
"­Inc­lusive range search, typically a number field but can search text. Will include specified values."
"­Exc­lusive range search, typically a number field but can search text. Will exclude specified values."
"­Special operator that allows you to find documents that contain a specified field"
"By combining the NOT operator you can find documents that are missing a field"
 

Example