-
Notifications
You must be signed in to change notification settings - Fork 0
/
newrelic.config
32 lines (32 loc) · 1.12 KB
/
newrelic.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<!-- Copyright (c) 2008-2014 New Relic, Inc. All rights reserved. -->
<!-- For more information see: https://newrelic.com/docs/dotnet/dotnet-agent-configuration -->
<configuration xmlns="urn:newrelic-config" agentEnabled="true">
<service licenseKey="REPLACE_WITH_LICENSE_KEY" ssl="true" />
<application>
<name>My Application</name>
</application>
<log level="info"/>
<transactionTracer enabled="true"
transactionThreshold="apdex_f"
stackTraceThreshold="500"
recordSql="obfuscated"
explainEnabled="true"
explainThreshold="500"/>
<crossApplicationTracer enabled="true"/>
<errorCollector enabled="true">
<ignoreErrors>
<exception>System.IO.FileNotFoundException</exception>
<exception>System.Threading.ThreadAbortException</exception>
</ignoreErrors>
<ignoreStatusCodes>
<code>401</code>
<code>404</code>
</ignoreStatusCodes>
</errorCollector>
<browserMonitoring autoInstrument="true" />
<threadProfiling>
<ignoreMethod>System.Threading.WaitHandle:InternalWaitOne</ignoreMethod>
<ignoreMethod>System.Threading.WaitHandle:WaitAny</ignoreMethod>
</threadProfiling>
</configuration>