• English日本語한국어
  • Log inStart now

Optional manual browser instrumentation with Django templates

The Python agent can automatically add to any HTML page responses. For most popular Python web frameworks, including Django, Flask, and Pyramid, use automatic browser instrumentation.

If you need to use manual instrumentation with Django templates, you can manually register and use the newrelic_tags tag library.

Add Django template tags

Follow this procedure only if you need to use manual instrumentation to insert the browser monitoring agent instead of the Python agent's automatic instrumentation.

To make this template tag library available, you must manually add newrelic.extras.framework_django to the list of INSTALLED_APPS in your Django project settings files.

  1. At the top of the template file, add a reference to the tag library to the list of tag libraries being loaded by the load macro.

    {% load ... newrelic_tags %}
  2. Add the following as close to the start of the <head> element of the template page as possible. Place this after any meta tags specifying a charset property or any http-equiv meta tag for X-UA-Compatible.

    {% newrelic_browser_timing_header %}
  3. At the end of the <body> element of the template page, add:

    {% newrelic_browser_timing_footer %}
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.