Bilješka
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati da se prijavite ili promijenite direktorije.
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati promijeniti direktorije.
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)