以下是查询App Service CPU百分比的KQL示例:
AppServicePlan_CL
| where TimeGenerated > ago(1d)
| where (InstanceName_s contains "YourAppServiceInstanceName")
| where (ObjectName_s == "Processor")
| where (CounterName_s == "% Processor Time")
| summarize AggregatedValue = avg(CounterValue_d) by bin(TimeGenerated, 30s), InstanceName_s
| render timechart
在这个示例中,我们使用了AppServicePlan_CL表,以获取有关App Service计划的CPU百分比数据。我们过滤了只包括我们感兴趣的App Service实例,选择了处理器对象,并获取了% Processor Time的计数器。然后,我们使用bin函数使结果按时间段进行聚合,并使用avg函数计算平均CPU百分比,最后渲染了时间图表以可视化显示结果。
你可以根据自己的需要修改这个查询。