Hi All,
I was trying to compare two fields of our windows events by creating a mutate filter ,but i couldn't get any results in elasticsearch, i checked the configuration ,it seems to be Ok.Could anyone help me on this
filter {
if "4,724" in [event_id] {
if [event_data][SubjectUserName] != [event_data][TargetUserName] {
mutate {
add_field => {
"match" => false
}
}
}
}
}
filter {
if "4,724" in [event_id] {
if [event_data][SubjectUserName] == [event_data][TargetUserName] {
mutate {
add_field => {
"match" => true
}
}
}
}
}
Any help would be really helpful
Thanks In Advance,
Raj