gpt4 book ai didi

azure - 库斯托 : query to group http status codes

转载 作者:行者123 更新时间:2023-12-03 00:01:36 26 4
gpt4 key购买 nike

我正在尝试从 Azure Log Analytics 查询一些与 Azure 应用程序网关相关的内容。

对于每个 http 状态代码,我得到这样的查询结果:

AzureDiagnostics
| where ResourceProvider == "MICROSOFT.NETWORK" and Category == "ApplicationGatewayAccessLog"
| summarize count() by httpStatus_d, Resource

现在我需要将这些结果按 2xx、3xx、4xx 和 5xx 分组。

刚接触 Kusto,我找不到实现此目标的正确方法。感谢您的提示!

最佳答案

您可以尝试使用bin()函数,例如:

AzureDiagnostics
| where ResourceProvider == "MICROSOFT.NETWORK" and Category == "ApplicationGatewayAccessLog"
| summarize count() by bin(httpStatus_d, 100), Resource

关于azure - 库斯托 : query to group http status codes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64210779/

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