I want to find RU of each query through application insight analytics tool. I've run the following query:
dependencies
| where type == "Azure DocumentDB"
But there is no sign for RU of the run query. Also, there is not any thing in customDimensions
column:
I should have mentioned that there is a duration column which is not my answer.
First, you might want to turn on HeaderTelemetry.
Then you can probably join the
dependencies
andrequests
tables like so:According to the docs,
operation_Id
is the field to correlate.The response headers should be on the
customDimensions
attributes.