APM Insight includes an option to exclude select applications from being monitored. Users can use this to enhance the performance of the applications they require and avoid monitoring unnecessary ones.
Follow the steps given below to monitor select .NET applications with APM Insight:


Follow the steps given below to configure application filters manually:
use.app.filters=true (default)
use.apminsight.appnames=true (default is false)
include.app.names={json formatted appnames}
include.app.names = { "Default Web Site/" : "ServerRoot", "Default Web Site/Services/wcf1" : "Service1", ... }
%SystemDrive%\\ProgramData\\DotnetAgent
%SystemDrive%\\Documents and Settings\\All Users\\Application Data\\DotNetAgent
key = apminsight.appname
value = <custom application name> (Use this name in configuration file)
<add key="apminsight.appname" value="<custom application name>"/>
...
</appSettings>
It allows us to track crucial metrics such as response times, resource utilization, error rates, and transaction performance. The real-time monitoring alerts promptly notify us of any issues or anomalies, enabling us to take immediate action.
Reviewer Role: Research and Development