Created
August 13, 2021 03:18
-
-
Save Acen/ddba7325b9ab3eedc56e3ca22bf91716 to your computer and use it in GitHub Desktop.
Kibana - Searching for wildcard values with the query DSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"query": { | |
"bool": { | |
"must_not": { | |
"wildcard": { | |
"error.string": { | |
"value": "Some sort of value*" | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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