Query Editor

This editor enables you to use the Elasticsearch Query DSL to search your data. For help in query structure, please Read the Docs.

Use the code samples below as basic stubs in querying...

Sample Query:

{ "query": { "match_all": {} } }

Sample Aggregation

{ "size": 0, "aggs" : { "AGG_NAME" : { "terms" : { "field" : "FIELD_NAME" } } } }