[ML] Fix datafeed of auth_high_count_logon_events_for_a_source_ip anomaly detection job (#149524)

This commit is contained in:
Kirti Sodhi 2023-01-26 10:31:17 -05:00 committed by GitHub
parent 85b5351c90
commit da929fc667
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,16 +5,24 @@
],
"max_empty_searches": 10,
"query": {
"bool": {
"filter": [{"exists": {"field": "source.ip"}}],
"must": [
{"bool": {
"should": [
{"term": {"event.category": "authentication"}},
{"term": {"event.outcome": "success"}}
]
}}
]
"bool": {
"filter": [
{
"exists": {
"field": "source.ip"
}
},
{
"term": {
"event.category": "authentication"
}
},
{
"term": {
"event.outcome": "success"
}
}
]
}
}
}
}