AmlDataSetEvent 테이블에 대한 쿼리

데이터 세트 읽기 개수

사용자 및 데이터 세트별로 그룹화된 데이터 세트 읽기 수를 계산합니다.

AmlDataSetEvent
| where split(OperationName, "/")[-1]=="READ" and AmlDatasetId !=""
| extend  Identity=(parse_json(Identity))
| project AmlDatasetId, UserName=Identity.UserName
| summarize  Count=count() by AmlDatasetId, UserName=tostring(UserName)