Windows Server Monitor is another application from .Net Agent. You need to disable the .Net agent so that your development system stops sending data to your application. If you do not want the .Net agent running on your development system at all, you can modify the newrelic.config file in% ALLUSERSPROFILE% \ New Relic \ .NET Agent to disable it by changing the following:
<configuration xmlns="urn:newrelic-config" agentEnabled="true">
to
<configuration xmlns="urn:newrelic-config" agentEnabled="false">
The advantage of this is globally, but if you want to turn it on and off for each application, you can add the following to the web application: web.config:
<appSettings>
<add key="NewRelic.AgentEnabled" value="false"/>
</appSettings>
source
share