{
"ACTION": "Login"
}
Solved! Go to Solution.
You're close! Something to keep in mind is that is that summary is only a string and not a repeated field. So what you're doing is correct where you're putting that string into security_result.summary, but for the merge you're actually trying to merge that string field into UDM directly. Now that you have your security_result object(with the summary string in it), you'll want to merge that object into UDM, so something like this:
mutate {
merge => {
"event.idm.read_only_udm.security_result" => "security_result"
}
Any more questions/issues let me know.
-mike
You're close! Something to keep in mind is that is that summary is only a string and not a repeated field. So what you're doing is correct where you're putting that string into security_result.summary, but for the merge you're actually trying to merge that string field into UDM directly. Now that you have your security_result object(with the summary string in it), you'll want to merge that object into UDM, so something like this:
mutate {
merge => {
"event.idm.read_only_udm.security_result" => "security_result"
}
Any more questions/issues let me know.
-mike