Math Functions
PantherFlow math functions
math.round()
math.round()
math.round(value: number [, precision: int]) -> float
Returns the value rounded to the specified precision.
Example:
panther_logs.public.aws_alb
| summarize avg=agg.avg(receivedBytes) by ip_address
| project avg=math.round(avg, 2)
Last updated
Was this helpful?