I am building a custom parser in Chronicle. I am trying to add data to the Security Result field.
Documentation that I am using: https://cloud.google.com/chronicle/docs/unified-data-model/udm-usage#securityresultabout
I originally was trying to put data in:
event.idm.read_only_udm.securityresult (based on the documentation), but that produced the error:
recursive rawDataToProto failed: field \\"securityresult\\": no descriptor found"
Using that, switched to:
"event.idm.read_only_udm.security_result.action" => "ALLOW"
"event.idm.read_only_udm.security_result.severity" => "LOW"
}
Now I get an error:
\\"security_result\\": failed to make strategy: received non-slice or non-array raw output for repeated field
Any ideas what that means or how to address? Any ideas on how to assign values to a security result?