When you install the .NET Agent on a machine and use automatic tier naming, the agent instruments every IIS application by default. If you do not need to monitor all application pools, disable monitoring for selected pools.
Open the config.xml file for editing as administrator. See 'Where to Configure Agent Properties' on Administer the .NET Agent
<application-pools>
<!-- Do not instrument applications in DefaultAppPool when "enabled" attribute is set to false -->
<application-pool name="DefaultAppPool" enabled="false" >
<tier name="Disabled App Pool" />
</application-pool>
</application-pools>
CODE
tier is a required element even if you are disabling an app pool.
Set the application-pool element name attribute to the application pool name. This example disables instrumentation for the DefaultAppPool. You may add multiple application-pool elements.
Restart the AppDynamics.Agent.Coordinator service.