我有一个应用程序洞察查询。在这个查询中,我想将几列加入/组合成一列,以显示如何完成。
我想结合IP,城市,州,国家。
customEvents
| where timestamp >= ago(7d)
| where (itemType == 'customEvent')
| where name == "Signin"
| project timestamp, customDimensions.appusername, client_IP,client_City,client_StateOrProvince, client_CountryOrRegion
| order by timestamp desc