【发布时间】:2023-03-10 06:56:01
【问题描述】:
我在 KUSTO 上进行了此搜索,但在转换为百分位数时遇到问题。我可以转换为 Gig/sec,但不能转换为百分位数。当我这样做时,我只得到总数的百分位数,而不是每个百分位数。任何帮助都非常感谢。
AzureMetrics
| where ResourceId contains "route"
| where MetricName == "BitsInPerSecond"
| where TimeGenerated > (now() - 60m) and TimeGenerated <= now()
| summarize by Resource, inGigabitPersec=Maximum/100000000
| summarize percentiles(inGigabitPersec, 100)
谢谢
【问题讨论】:
标签: azure azure-data-explorer kql