年、月、日、時間のみでレコードを集計するにはどうすればよいですか?
Application Insights Analyticsでは:
時間ごと:
requests
| summarize count() by bin(timestamp, 1h)
日ごとに:
requests
| summarize count() by bin(timestamp, 1d)
月ごと
requests
| summarize count() by bin(datepart("Month", timestamp), 1)
年ごと
requests
| summarize count() by bin(datepart("Year", timestamp), 1)