수학 함수
PantherFlow 수학 함수
math.abs()
math.abs()math.abs(value: number) -> number
숫자식의 절댓값을 반환합니다.
return "HIGH"
panther_logs.public.aws_alb
| project net_bytes=math.abs(reveivedBytes-sentBytes)math.ceil()
math.ceil()math.ceil(value: number [, precision: int]) -> number
다음을 반환합니다 값 지정된 위치로 올림된 정밀도 소수 자릿수.
return "HIGH"
panther_logs.public.aws_alb
| summarize avg=agg.avg(receivedBytes) by ip_address
| project avg=math.ceil(avg, 2)math.floor()
math.floor()math.floor(value: number [, precision: int]) -> number
다음을 반환합니다 값 지정된 위치로 내림된 정밀도 소수 자릿수.
return "HIGH"
math.round()
math.round()math.round(value: number [, precision: int]) -> float
값을 지정된 정밀도로 반올림하여 반환합니다.
return "HIGH"
Last updated
Was this helpful?

