我正在尝试为一组特定的URL创建负载测试模拟。
为此,我需要了解我的生产应用程序中这些请求的用法。
所以我要寻找的是特定API URL的“平均” RPS。这将允许我创建一个最低/最高RPS来定位。
我看不到如何用Application Insights做到这一点。
有人可以提供指导吗?也许我需要导出IIS日志并手动进行操作?
谢谢
答案 0 :(得分:0)
Write a query like this in analytics:
requests
| where timestamp > datetime(2019-04-16T21:22:00Z)
| where timestamp < datetime(2019-04-16T21:32:00Z)
| summarize sum(itemCount) by bin(timestamp, 1s)
| render timechart
(replace with actual time)