如何跨应用程序洞察分析表进行一次搜索?
How does one search across application insight analytics tables?
我想在 Application Insights Analytics 中搜索给定 operation_id 的所有分析,而不必指定每个 table(请求、依赖项、异常、跟踪等)。我记得有一种方法在intellisense中没有提示,但是无法定位。
这应该有效:
union *
| where operation_Id == "<id>"
| take 10
我还发现以下方法也有效:
search *
| where operation_Id =="<Id>"
一旦我弄清楚我在哪里找到这个
,我会更新我的来源
我想在 Application Insights Analytics 中搜索给定 operation_id 的所有分析,而不必指定每个 table(请求、依赖项、异常、跟踪等)。我记得有一种方法在intellisense中没有提示,但是无法定位。
这应该有效:
union *
| where operation_Id == "<id>"
| take 10
我还发现以下方法也有效:
search *
| where operation_Id =="<Id>"
一旦我弄清楚我在哪里找到这个
,我会更新我的来源