[Question] Is it possible to setup sampling on app insights integration #682
Unanswered
GFPhillips
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Just checking if on the host.json of the logic apps standard we can setup sampling to reduce the noise and data ingestion when integrating with application insights. Something like this:
{ "version": "2.0", "logging": { "applicationInsights": { "samplingSettings": { "isEnabled": true, "maxTelemetryItemsPerSecond": 10, "initialSamplingPercentage": 10.0, "minSamplingPercentage": 10.0, "maxSamplingPercentage": 10.0, "IncludedTypes": "Exception;Trace;Request" } } }, "extensionBundle": { "id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows", "version": "[1.*, 2.0.0)" } }
If i do the above , the requests stop going through app insights and cant see any telemetry.
I could do it at the app insights level, but want control from the logic apps itself since we reuse the application insights with other resources (i.e. APIM API that exposes the workflow).
Thanks
Beta Was this translation helpful? Give feedback.
All reactions