Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I work at New Relic.</p> <p>When you get a message like this, it's due to the component of our app known as Real User Monitoring (RUM), which attempts to monitor page load time in the customer's browser. Why should this affect your ability to rename transactions? We base the timing capture in the user's browser on the transaction ID--which is tied to transaction name on your server--and this information goes into the footer we've created for your web page. By the time we create that footer, whatever the transaction name is will continue to be the case through the end of the transaction. In the case that you have a slow page load that corresponds to a slow app server transaction and we captured both traces, then in our UI you'll be able to click between the two (<em>This</em> slow page load came from <em>that specific</em> slow transaction).</p> <p>Rails 4 makes this rather harder if you're using the turbolink feature. We're working on explicit support for that very soon, but as it stands, turbolinks basically preclude RUM from working after the first page load (if your app has links to itself in it, anyway).</p> <p>So, your options for fixing it are:</p> <ol> <li>rename your transaction earlier in the code sequence--preferably rather far before the end of the content generation (necessarily before gets output, but in some cases rather sooner)</li> <li>turn off browser monitoring for this app, as you can then rename transactions at any point in the execution</li> </ol> <p>Note that suggestion 1 might not work considering the state of our turbolinks support. We'll have support for that as soon as we can--certainly sometime this year. Unfortunately we don't promise timelines, we just deliver features, so I can't be more specific on timing.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload