如何通过Application Insights Analytics工具在依赖关系中获取查询的RU?

时间:2017-09-28 19:50:19

标签: azure-application-insights azure-cosmosdb request-unit

我想通过应用洞察分析工具找到每个查询的RU。我运行了以下查询:

dependencies
| where type == "Azure DocumentDB"

但是运行查询的RU没有任何迹象。此外,customDimensions列中没有任何内容:

enter image description here

我应该提到有一个持续时间列不是我的答案。

1 个答案:

答案 0 :(得分:0)

首先,您可能需要启用HeaderTelemetry

然后你可以像这样加入dependenciesrequests表:

dependencies | where type == "Azure DocumentDB" | join (
   requests 
) on operation_Id  

根据docsoperation_Id是要关联的字段。

response headers应位于customDimensions属性。