How to decrease/remove dependency tracking on Standard Logic Apps

Cheah, Felix FC 20 Reputation points
2025-04-28T02:23:02.91+00:00

User's image

I have a standard logic apps with serval workflows that run quite often because of this there is a lot of information going into our log analytics table "AppDependencies". Is there a way to limit or stop dependency tracking in logic apps? I've done it for function apps but can't figure out how to do it for Logic apps.

I tried changing the log level to error but that didnt seem to work.User's image

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,487 questions
0 comments No comments
{count} votes

Accepted answer
  1. RithwikBojja 2,325 Reputation points Microsoft External Staff Moderator
    2025-04-28T03:38:33.8+00:00

    Hi @Cheah, Felix FC ,

    How to remove dependency tracking on Standard Logic Apps

    You can remove dependency tracking using below host.json:

    
    {
    
      "version": "2.0",
    
      "extensionBundle": {
    
        "id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
    
        "version": "[1.*, 2.0.0)"
    
      },
    
      "logging": {
    
        "logLevel": {
    
          "Workflow.Host": "Error",
    
          "Workflow.Jobs": "Error",
    
          "Workflow.Runtime": "Error"
    
        },
    
        "applicationInsights": {
    
          "samplingSettings": {
    
            "isEnabled": true,
    
            "maxTelemetryItemsPerSecond": 5
    
          },
    
          "enableDependencyTracking": false
    
        }
    
      }
    
    }
    
    

    Here I stopped logging by setting the enableDependencyTracking property to false.

    Host.json is in:

    Logic app-->Development Tools-->Advanced Tools-->Go-->Tools-->Zip Push Deploy--> host.json -->edit

    enter image description here

    Logs for last 1 hour(before disabling):

    enter image description here

    Logs for last 30 min(After disabling):

    Waited for 30 minutes and checked:

    enter image description here

    By this way you can disable dependency tracking.


    If this answer was helpful, please click "Accept the answer" and mark Yes, as this can help other community members.

    enter image description here

    If you have any other questions or are still experiencing issues, feel free to ask in the "comments" section, and I'd be happy to help.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.