code

Azure Application Insights - 타임스탬프의 일부로 요약

starcafe 2023. 6. 2. 20:41
반응형

Azure Application Insights - 타임스탬프의 일부로 요약

기록을 연도, 월, 일 및 시간별로만 요약하려면 어떻게 해야 합니까?

애플리케이션 통찰력 분석:

시간별:

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) 

언급URL : https://stackoverflow.com/questions/44391378/azure-application-insights-summarize-by-part-of-timestamp

반응형