Search code examples
azure-application-insightsazure-durable-functions

Logs of Azure Durable Function in Application Insights


I see the following logs in Application Insights after running an Azure Durable Function:

enter image description here

Does 'Response time' indicate the execution time of each function? If so, is there a way to run a kusto query to return the Response time and name of each function?


Solution

  • Yes, Response Time is the time taken to complete execution
    or
    Response Time = Latency + Processing time.

    You can use the below kql query to pull the function name and response time

      requests  
     | project timestamp,functionName=name,FuncexecutionTime=parse_json(customDimensions).FunctionExecutionTimeMs,operation_Id,functionappName=cloud_RoleName
    

    enter image description here