ユーザーのOSシェアを知りたいとき
union customEvents
| extend OS = iif(client_OS has "iOS" ,"iOS",iif(client_OS has "Android" ,"Android","Other"))
| summarize Users=dcount(user_Id) by OS , bin(timestamp, 1d)
| render piechart
カスタムイベントのKEY VALUEでサマリーしたいとき
customEvents
| where name != "StartServiceLog" and name != "StartSessionLog"//システムで勝手に生成されるレコードを排除
| summarize count() by tostring(customDimensions.Properties)