是否有方法在Azure应用程序洞察分析查询中进行透视?SQL有一个Pivot Keyword,在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_ 我在找一些低于白日的东西。

https://stackoverflow.com/questions/44585032
复制相似问题