sum
The sum function returns the sum of values within a numeric column. It ignores
NULL values during the calculation. It is often used with match
to calculate the sums within different groups in the data.
| Syntax | Param data types | Return type |
|---|---|---|
sum(numericExpression) |
NUMBER |
NUMBER |
Code Sample
Find all the events where
target.ipis not empty. For all the events that match onprincipal.ip, store a sum ofnetwork.sent_bytesin a variable calledsent_bytes.target.ip != "" match: principal.ip outcome: $sent_bytes = sum(network.sent_bytes)