For the complete documentation index, see llms.txt. This page is also available as Markdown.

PantherFlow 예제: Panther 감사 로그

쿼리 panther_logs.public.panther_audit 테이블:

panther_logs.public.panther_audit

최대 10개의 결과 반환:

panther_logs.public.panther_audit
| limit 10

정렬 기준 p_event_time:

panther_logs.public.panther_audit
| sort p_event_time desc
| limit 10

지난 24시간으로 필터링:

panther_logs.public.panther_audit
| where p_event_time > time.now() - 1d
| sort p_event_time desc
| limit 10

타임스탬프로 필터링:

panther_logs.public.panther_audit
| where p_event_time > time.parse_timestamp('2023-09-01 00:00:00Z')
| sort p_event_time desc
| limit 10

중첩 필드로 필터링(점 표기법 사용)

중첩 필드로 필터링(대괄호 표기법 사용)

배열 내의 깊게 중첩된 값이 존재하는지 확인(즉, null이 아닌지)

이벤트 수 계산:

작업 수 계산:

희귀한 작업만 표시:

사용자가 지난 7일 동안 사용한 새 IP를 지난 60일 동안 사용한 IP와 비교하여 표시:

마지막 업데이트

도움이 되었나요?