Skip to content

Instantly share code, notes, and snippets.

@Acen
Created August 13, 2021 03:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Acen/ddba7325b9ab3eedc56e3ca22bf91716 to your computer and use it in GitHub Desktop.
Save Acen/ddba7325b9ab3eedc56e3ca22bf91716 to your computer and use it in GitHub Desktop.
Kibana - Searching for wildcard values with the query DSL
{
"query": {
"bool": {
"must_not": {
"wildcard": {
"error.string": {
"value": "Some sort of value*"
}
}
}
}
}
}
{
"query": {
"wildcard": {
"error.url": {
"value": "Some sort of value*"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment