Bagikan melalui


Kueri untuk tabel WVDCheckpoints

Untuk informasi tentang menggunakan kueri ini di portal Azure, lihat tutorial Analitik Log. Untuk REST API, lihat Kueri.

Sumber daya jarak jauh yang diterbitkan berdasarkan jumlah pengguna

Menghasilkan bagan batang sumber daya yang diterbitkan dengan jumlah pengguna yang telah meluncurkannya.

// The checkpoints table keeps track of any individual remote application or desktop a user has started from the remote desktop client UI. 
// Note: These logs will only reflect applications published as RemoteApp; applications started within a published desktop session are not individually captured and only show as the overall remote desktop connection.
WVDCheckpoints  
| where Name == "LaunchExecutable" 
| extend App = parse_json(Parameters).filename 
| summarize Usage = dcount(UserName) by tostring(App) 
| sort by Usage desc 
| render barchart