mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[ML] Fix datafeed of auth_high_count_logon_events_for_a_source_ip anomaly detection job (#149524)
This commit is contained in:
parent
85b5351c90
commit
da929fc667
1 changed files with 19 additions and 11 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue