azuremonitoringazure-logic-appsazure-application-insights

Azure Logic Apps - Queries for telemetry 2.0 show no results


I want to use the telemtry 2.0 for Azure Logic Apps. Therefore I already updated the host.json with the following code (as explained by Microsoft)

{
  "version": "2.0",
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
    "version": " [1, 2.00) "
  },
  "extensions": {
    "workflow": {
      "Settings": {
        "Runtime.ApplicationInsightTelemetryVersion": "v2"
      }
    }
  }
}

If I now take a look at: Logic App --> Monitoring --> Insights --> Insights --> Runs I can see only results for the first of the three Queries:

enter image description here

What can I do to see results for "Dependencies for the selected action" and "Exceptions for the selected action"? Or more precise, How or where to configure ExportedWorkflowName, RunId, requestId?


Solution

  • What can I do to see results for "Dependencies for the selected action" and "Exceptions for the selected action"? Or more precise, How or where to configure ExportedWorkflowName, RunId, requestId?

    To get the dependencies, exceptions and other results, you do not need any thing like run id and all, you just need to click on the run as below:

    enter image description here

    Later click below any action:

    enter image description here

    Then , if the action has any dependencies are there, it shows. if it has any errors or exceptions it shows as below:

    enter image description here

    So, you just need to first click on run and then on action to see the dependencies and exceptions as a total:

    enter image description here

    As, my run has no dependencies therefore it did not provide any, but it has some exceptions so, it displayed those.