Hello @Maksym Shportko
Regarding the first solution, setAutoCollectRequests(false)
should disable automatic collection of requests, but it will not prevent requests from being logged if they are explicitly tracked.
Regarding the second solution, the telemetryRequestProcessor
function should filter out requests that match the specified conditions.
However, the envelope.name
property should be "Microsoft.ApplicationInsights.Request"
,
not "Request"
.
So, you can try updating the condition to envelope.name === "Microsoft.ApplicationInsights.Request"
.
If neither of these solutions work, you can try using the samplingPercentage
configuration option to reduce the number of requests that are logged.
For example, you can set samplingPercentage
to 50 to log only 50% of the requests.
This should get you started.
I hope that this response has addressed your query and helped you overcome your challenges. If so, please mark this response as Answered. This will not only acknowledge our efforts, but also assist other community members who may be looking for similar solutions.