有没有办法在 Azure 应用程序洞察分析查询中进行透视?SQL 有一个Pivot 关键字,在Application Insight Analytics中可以实现类似的功能吗?
当我运行以下查询时,我得到了异常并计数,但我希望看到一天一天的趋势
exceptions
| where timestamp >= ago(24h)
| extend Api = replace(@"/(\d+)",@"/xxxx", operation_Name)
| summarize count() by type
| sort by count_ desc
| limit 10
| project Exception = type, Count = count_