Delen via


Query's voor de tabel WVDCheckpoints

Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.

Externe resources gepubliceerd op aantal gebruikers

Produceert een staafdiagram van gepubliceerde resources door het aantal gebruikers dat ze heeft gestart.

// 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