Skip to content

Commit

Permalink
Update datafeed_high_count_network_denies.json (#101681)
Browse files Browse the repository at this point in the history
add a boolean OR between the two possible field values
  • Loading branch information
randomuserid committed Jun 9, 2021
1 parent 3b37b77 commit eb3842b
Showing 1 changed file with 22 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,29 @@
"term": {
"event.category": "network"
}
},
}
],
"must": [
{
"term": {
"event.outcome": "deny"
"bool": {
"should": [
{
"match": {
"event.outcome": {
"query": "deny",
"operator": "OR"
}
}
},
{
"match": {
"event.type": {
"query": "denied",
"operator": "OR"
}
}
}
]
}
}
]
Expand Down

0 comments on commit eb3842b

Please sign in to comment.