Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure 如何在Application Insights中获取请求子集的移动RPS图?_Azure_Azure Application Insights - Fatal编程技术网

Azure 如何在Application Insights中获取请求子集的移动RPS图?

Azure 如何在Application Insights中获取请求子集的移动RPS图?,azure,azure-application-insights,Azure,Azure Application Insights,我正在尝试为一组特定的URL创建负载测试模拟 为此,我需要了解这些请求在我的生产应用程序中的使用情况 所以我要寻找的是我的特定API URL随时间变化的“平均”RPS。这将允许我创建目标的最小/最大RPS 我看不出如何使用应用程序洞察实现这一点 有人能提供指导吗?也许我需要导出IIS日志并手动执行 谢谢请在analytics中编写如下查询: requests | where timestamp > datetime(2019-04-16T21:22:00Z) | where timesta

我正在尝试为一组特定的URL创建负载测试模拟

为此,我需要了解这些请求在我的生产应用程序中的使用情况

所以我要寻找的是我的特定API URL随时间变化的“平均”RPS。这将允许我创建目标的最小/最大RPS

我看不出如何使用应用程序洞察实现这一点

有人能提供指导吗?也许我需要导出IIS日志并手动执行


谢谢

请在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 
请求
|其中时间戳>日期时间(2019-04-16T21:22:00Z)
|其中时间戳<日期时间(2019-04-16T21:32:00Z)
|按bin(时间戳,1s)汇总总和(itemCount)
|渲染时间图
(替换为实际时间)