gpt4 book ai didi

Azure 响应时间监控每个 URL 的范围

转载 作者:行者123 更新时间:2023-12-01 10:17:18 25 4
gpt4 key购买 nike

我正在尝试配置仪表板,其中包含一些业务关键功能,我们需要重点关注这些功能以基于 SLA 进行性能监控。

例如,登录页面 URL 检索记录需要更快,并且接受的 SLA 为

绿色 < 1 秒琥珀色 1 秒 - 2 秒红色 > 2 秒

我们能够根据平面文件日志在 SPLUNK 中进行相同的配置。但是我们无法在 Azure 中配置类似的东西。

enter image description here

到目前为止,我无法根据我们的要求创建仪表板。任何类型的图形表示对我们来说都可以。基于此监控,我们可能需要在速度缓慢的一段时间内使用react并提高性能。

最佳答案

您可以在应用程序洞察中使用以下 Kusto 查询:

requests 
| where timestamp > ago(2h) //set the time range
| where url == "http://localhost:54917/" //set the url here
| summarize avg_time =avg(duration)
| extend my_result = case(
avg_time<=1000,"good", //1000 milliseconds
avg_time<=2000,"normal",//2000 milliseconds
"bad"
)

注意:

1.avg_time的单位是毫秒

2.当avg_time <=1000毫秒时,则在仪表板中显示“good”;当<=2000毫秒时,显示“正常”;当>2000毫秒时,显示“bad”。

查询结果(改为图表):

enter image description here

然后在仪表板中:

enter image description here

关于Azure 响应时间监控每个 URL 的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60148814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com