WVDCheckpoints 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的相關信息,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
依用戶計數發佈的遠端資源
依已啟動資源的用戶數目,產生已發佈資源的條形圖。
// 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