In a kibana dashboard I need to query a field for upper or lowercase. The field is a scriptblock from powershell so it has to be a string(text), I need to be able to search for different words inside it.
After reading a ton of stuff, I guess I have a couple options -
I want to be able to do a search like this -
"minimum_should_match": 1,
"should": [
{
"wildcard": {
"powershell.scriptblock.text": "ExecutionPolicy*"
}
Are you saying you want searches to be case sensitive? You can do wildcard queries in kibana if you want the not analyzed part of it, {"wildcard":{"powershell.scriptblock.text":"ExecutionPolicy*"}}
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.