New to elastic search
I have the following search, which works great but I would like to only return when both "result.confidence", "result.severity" = HIGH instead of when either equal HIGH
{
"size": 10000,
"query": {
"bool": {
"filter": [
{
"multi_match": {
"query": "HIGH",
"fields": ["result.confidence", "result.severity"]
}
},
{
"range" : {
"@timestamp": {
"gte" : "now-1h",
"lt" : "now"
}
}
}
]
}
}
}