Consultas para a tabela WVDCheckpoints
Para obter informações sobre como usar essas consultas no portal do Azure, consulte o tutorial do Log Analytics. Para a API REST, consulte Consulta.
Recursos remotos publicados por contagem de usuários
Produz um gráfico de barras de recursos publicados pelo número de usuários que os executaram.
// 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