Condividi tramite


Query per la tabella WVDCheckpoints

Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.

Risorse remote pubblicate per numero di utenti

Produce un grafico a barre delle risorse pubblicate in base al numero di utenti che li hanno avviati.

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