Skip to content

Instantly share code, notes, and snippets.

@alarictabaries
Created December 7, 2021 11:00
Show Gist options
  • Save alarictabaries/0d1242177420003a7fe7b1d010c9e53f to your computer and use it in GitHub Desktop.
Save alarictabaries/0d1242177420003a7fe7b1d010c9e53f to your computer and use it in GitHub Desktop.
Kibana Dev Tools commands
POST index/_search
{
"query": {
"match": {
"field": "value"
}
},
"fields": [
"field1",
"field2"
],
"_source": false
}
GET index/index/_search
{
"query": {
"match": {
"field": "value"
}
}
}
POST index/_delete_by_query
{
"query": {
"match": {
"field": "value"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment