我想通过应用洞察分析工具找到每个查询的RU。我运行了以下查询:
dependencies
| where type == "Azure DocumentDB"
但是运行查询的RU没有任何迹象。此外,customDimensions
列中没有任何内容:
我应该提到有一个持续时间列不是我的答案。
答案 0 :(得分:0)
首先,您可能需要启用HeaderTelemetry。
然后你可以像这样加入dependencies
和requests
表:
dependencies | where type == "Azure DocumentDB" | join (
requests
) on operation_Id
根据docs,operation_Id
是要关联的字段。
response headers应位于customDimensions
属性。