• EnglishEspañol日本語한국어Português
  • Log inStart now

Troubleshooting Java custom instrumentation

Here are some troubleshooting tips for custom instrumentation with New Relic's Java agent.

UI options

You can use New Relic's UI to define instrumentation rules with the Custom Instrumentation Editor, or edit your XML file via your Java app's Settings.

Java apps only: To edit your XML file directly from the New Relic UI: Go to one.newrelic.com > All capabilities > APM & services > (select a Java app) > Settings > Live Instrumentation. From here you can:

  • Download a sample XML file.
  • Select an edit existing XML file.
  • Search the instrumentation history.

Nested transactions in thread profiler

Custom instrumentation is useful for nested transactions. In the thread profiler, methods with gray icons beside them cannot be instrumented because doing so would result in unacceptable overhead. However, children of those methods usually can be instrumented.

one.newrelic.com > All capabilities > APM & services > (select an app) > Events > Thread profiler: A gray icon means it cannot be instrumented. A white icon means it is uninstrumented but can be instrumented. A blue icon means it is currently instrumented.

To identify methods you can instrument, expand the thread profile tree until you find a suitable method:

  1. Go to one.newrelic.com > All capabilities > APM & services > (select an app) > Events > Thread profiler.
  2. Expand the thread profile tree until you find a suitable method.
  3. Follow standard procedures to define and deploy custom instrumentation.

Classes and methods

When troubleshooting custom instrumentation for your Java agent, compare the pointcut information in your newrelic.yml config file with confirmation messages in your log file. Verify that the classes and methods match.

Here is an example:

# This is a pointcut example in your newrelic.yml config file:
<pointcut transactionStartPoint="true">
<className>com.example.class.name</className>
<method>
<name>exampleMethod</name>
</method>
</pointcut>

If this is being instrumented properly, you may see a message similar to this in the log file:

# This is a confirmation example in your log file:
Oct 1, 2015 10:58:52 -0700 [9805 1] com.newrelic FINER: Instrumenting com/example/class/name

If the log file class and method do not match your custom instrumentation values, review and adjust as needed. (You may not always see a confirmation in your log file about whether the custom instrumentation load succeeded or failed.)

Separate transaction in XML

Here is an example of a pointcut with several method values. The nameTransaction has been added to the XML to break out the method as a separate transaction rather than as a segment in the APM Transactions breakdown table.

# This is a pointcut example to identify a specific transaction with XML custom instrumentation:
<pointcut>
<nameTransaction/>
<className>com.examplename.client.actionflow.impl.exampleActionFlow</className>
<method>
<name>requestNAME</name>
<parameters>
<type>boolean</type>
</parameters>
</method>
</pointcut>

Asynchronous transactions

If your application makes use of asynchronous processes, it may be possible to connect the async worker activity to the parent transaction using the Java API. By default these transactions are not linked. For more information, see Java asynchronous instrumentation.

Copyright © 2024 New Relic Inc.

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