Azure Application Insights中的每小时平均使用量

时间:2017-10-05 14:37:31

标签: azure-application-insights

我可以通过Application Insights显示每小时运行的运行日志,但是有没有办法按小时显示平均使用情况,以查看必须使用某个网站的当天时间?

1 个答案:

答案 0 :(得分:5)

在概述刀片上

您的资源,是不是有一个度量资源管理器,它显示了这一点?最后24小时?如果这不是您的意思,您可以进行分析查询以获得您想要的任何内容,例如

requests 
| where timestamp > ago(7d) 
| extend hour = datepart("hour", timestamp)
| summarize sum(itemCount)/7 by hour
| order by hour asc
| render barchart

这将显示过去7天内每24小时分割的请求除以7以显示每天的平均值。

如果你只是想要"今天"它的版本甚至更简单:

requests
| where timestamp > ago(1d) 
| summarize sum(itemCount) by bin(timestamp, 1h)
| render timechart

您可以在分析网站中查询的任何内容,然后您可以将其固定为天蓝色仪表板上的图块。