WVDCheckpoints 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 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