我想在Application Insights Analytics中搜索给定operation_id的所有分析,而无需指定每个表(请求,依赖项,异常,跟踪等)。我记得有一些方法在intellisense中没有提示,但无法找到它。
答案 0 :(得分:1)
这应该有效:
union *
| where operation_Id == "<id>"
| take 10
答案 1 :(得分:0)
我还发现以下内容也适用:
search *
| where operation_Id =="<Id>"
弄清楚在哪里找到这个消息后,我将使用源代码进行更新