0

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 ?

Murali
  • 11
  • 4

1 Answers1

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