Queries for the AmlDataSetEvent table
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
Count datasets reads
Count datasets reads grouped by users and datasets.
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)