0
votes

How to measure performance of the Azure Function binding to CosmosDb?
On one hand, how can I profile the CosmosDb account for activity?
On the other hand, how can I measure the binding activity of the Azure Function Host?

1
what performance exactly do you want to measure? And what binding are you using? Cosmos DB change feed trigger?silent
"what performance exactly do you want to measure?" Cost of the request made from an Azure Function to Cosmos DB. "And what binding are you using?" Input & Output (not trigger) "Cosmos DB change feed trigger?" NoFarrukh Normuradov

1 Answers

2
votes

The RU metrics metrics are abstracted away from you when you are using the input / output binding. If you need that level of detail / control, you will need to use the client binding as described here.