Hi there,
I am trying to create a new field by summing two existing fields in Google SecOps SIEM but encountering an error. For example, I have the fields source_bytes and response_bytes, and I want to create a new field total_bytes, calculated as: total_bytes = source_bytes + response_bytes
I wrote the query as follows:
metadata.event_type="xyz"
$total_bytes = $source_bytes + $response_bytes
match:
$total_bytes
However, I receive the following error:
> Compilation error validating query: missing type info for placeholder $total_bytes
How can I correctly define a new field by summing two existing fields in Google SecOps?
Any guidance would be appreciated!
Regards,
Prashant Nakum