Reputation: 3278
I have used below query to get the total number of requests by regions in last 30 days.
requests
| summarize count_=sum(itemCount), avg(duration)
by bin(timestamp, 1h), client_StateOrProvince, client_City
| order by timestamp asc, client_StateOrProvince, client_City
Here is results
But, I am looking for region wise (west us, east us..) , I am not able to find right column names?
Upvotes: 0
Views: 673
Reputation: 862
Application Analytics schema does not have a geo-region defined for requests.
In addition to the columns in your summarize statement, you can also add client_CountryOrRegion to get the country (although this will give you "United States" and not "West US")
Upvotes: 1