The RemoteDependencyData is sent by default even if events are not tracked. Is there a way to disable RemoteDependencyData of Microsoft Application Insights via JavaScript SDK ?
Asked
Active
Viewed 382 times
1 Answers
0
RemoteDependencyData events are collected each time your application makes Ajax requests.
You can disable autocollection here through disableAjaxTracking: true
OR maxAjaxCallsPerView: 0

Mark Wolff
- 124
- 3
-
Hi Thanks for the reply. Yes. Setting disableAjaxTracking to true stops RemoteDependencyData events. But Now I am getting something new. PageviewData and PageviewPerformanceData are tracked as seen from the network log. But I am not tracking page view. So this happens automatically too. Is there a way to control this by adding some parameters in configuration as like above ? – Murali Jul 30 '20 at 05:26