수학 함수

PantherFlow 수학 함수

circle-info

PantherFlow는 Panther 버전 1.110부터 오픈 베타로 제공되며 모든 고객이 사용할 수 있습니다. 버그 보고서나 기능 요청은 Panther 지원팀과 공유해 주세요.

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(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(value: number [, precision: int]) -> number

다음을 반환합니다 지정된 위치로 내림된 정밀도 소수 자릿수.

return "HIGH"

math.round()

math.round(value: number [, precision: int]) -> float

값을 지정된 정밀도로 반올림하여 반환합니다.

return "HIGH"

Last updated

Was this helpful?