With the .NET agent, you can add browser monitoring instrumentation to your webpages. Before you use browser with your .NET agent, refer to the .NET agent release notes, and make sure you have the installed the latest .NET agent release.
Follow the .NET agent requirements to install browser monitoring. Then follow the procedures in this document to manually instrument the .NET agent.
Auto-instrumentation
Important
Auto-instrumentation is only available for .NET Framework apps and .NET Core v6.0 and later web apps. Auto-instrumentation is unavailable for ASP.NET Core v5.0 and earlier applications even if they're monitored by the .NET agent.
Browser auto-instrumentation is enabled by default. With browser auto-instrumentation, the .NET Framework agent automatically injects the browser JavaScript header into any page that has a content-type
of text/html
and also has <head>
tag within the page.
The <head>
tag search starts at the beginning of the DOM. The .NET agent injects the JavaScript header through the addition of an HttpModule
that modifies the page using HTTP response filters before streaming the content to the user.
The first time you enable auto-instrumentation, you may need to clean your asp.net
cache directory so that aspx pages are recompiled. Use the following command:
$flush_dotnet_temp.cmd
With this injection, previously functioning pages may stop working if a content-type
is not set correctly. To correct, review and update the content-types
in your app or disable auto-instrumentation.
Manual instrumentation via agent API
If you cannot enable auto-instrumentation, you can still include the browser agent manually by using the New Relic .NET agent API and including appropriate code in your pages.
To download the
NewRelic.Api.Agent.dll
, re-run the installation and reference the.dll
:- From the New Relic .NET agent directory, select the New Relic.Net agent section, then select API Assembly.
- NuGet: Install and reference the .dll by running
Install-package NewRelic.Agent.Api
.
To set up your web application to call the New Relic .NET agent API, add a reference to
NewRelic.Api.Agent.dll
to your project.Optional: If you are modifying the deployed application directory on the web server, copy
NewRelic.Api.Agent.dll
into the application'sbin
directory.Call the API in your
<head>
tag. If a meta-tag with theX-UA-COMPATIBLE http-equiv
attribute exists, set it after that meta tag.
Manual instrumentation with copy/paste
When enabling browser monitoring, you can manually insert the JavaScript snippet into your app's webpages. The copy/paste option gives you control over the exact placement of our JavaScript snippet, which is required to monitor the webpage's performance. For instructions on enabling browser monitoring with copy/paste, refer to our Browser documentation.
Disable instrumentation
To disable instrumentation:
Troubleshooting
Follow the troubleshooting procedures if you are unable to view any browser timing data.