Syntax
newrelic.agent.get_browser_timing_footer()
Cuidado
This API was deprecated in version 9.4.0 and completely removed in version 11.0.0. Starting with Python agent version 9.4.0, the previous functionality of get_browser_timing_footer()
has been incorporated into get_browser_timing_header()
.
For more information on proper usage, see Manually instrument browser monitoring.
Generates a agent footer for injecting the JavaScript agent.
Description
This call returns the browser agent JavaScript footer snippet that, along with the header JavaScript snippet, is used to enable browser monitoring. To learn how to enable browser monitoring using this call along with get_browser_timing_header
, see Manually instrument browser monitoring.
This call must be called for every web request where you want to inject the JavaScript snippet. It cannot be called at global scope and cached.
Return values
Returns the browser agent footer JavaScript.
Examples
Manual browser monitoring instrumentation
See Manually instrument browser monitoring for instructions on how to use the header and footer calls.