Problem
After generating traffic and waiting five minutes, you do not see any data for your .NET app.
Solution
To troubleshoot missing data:
Make sure you have installed the latest release of the .NET agent.
Follow the troubleshooting procedures for missing data as applicable.
Verify whether your pages are rendered using ASPs. If you use another rendering technology, use manual instrumentation.
Flush your .NET cache.
Set the
<head>
tag of your pages to render on the server.Verify that your agent is configured to auto-instrument pages. Edit
newrelic.config
and verify thatautoInstrument
is set totrue
:<browserMonitoring autoInstrument="true"/>Check whether IIS page compression is disabled. If compressed before the .NET agent attempts browser instrumentation, the necessary
<HEAD>
tag won't be found. For instructions on how to check that, see Microsoft documentation.Look at the source of one of your pages through a browser. Look for a script with references to
NREUMQ
at the top and bottom of your pages. If you get support at support.newrelic.com, mention whether you are seeing this JavaScript in the page header or in some other location in the page, or you are not seeing it at all.
Here are some additional troubleshooting tips:
Browser problems | Additional troubleshooting tips for .NET agent |
---|---|
IIS exception error | With IIS, you may receive an
To solve this problem, you must manually implement the browser agent: Set |
Razor framework error | With the Razor framework, you may encounter the following message:
To solve this problem, follow the browser troubleshooting procedures for Razor frameworks. |