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
Logs for last 1 hour(before disabling):
Logs for last 30 min(After disabling):
Waited for 30 minutes and checked:
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.
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.