Skip to content

Releases: newrelic/newrelic-java-agent

Version 7.1.1

15 Jul 17:02
Compare
Choose a tag to compare
  • Real-time profiling for Java using JFR metrics

Due to overhead caused in some applications Real-time profiling for Java using JFR metrics
is now disabled by default.

Version 7.1.0

07 Jul 15:57
787812f
Compare
Choose a tag to compare

Known issues

Some customers saw increased overhead when Real-time profiling is enabled.
See notice below on how to disable it.

New features and improvements:

  • Java instrumentation by XML new properties #288

    • traceLambda - to trace lambdas inside a method
    • traceByReturnType - to trace all methods in a class that return a given type

    These are compatible with Java and Scala. For more information, see Java instrumentation by XML.

  • Scala APIs #254

    New artifacts allow Scala code to be instrumented using a fluent Scala API
    instead of the Java annotations. There are specific artifacts for versions
    2.10, 2.11, 2.12, 2.13 of Scala. Scala 3.0 users can use the 2.13 artifact.

    For more information, see Scala instrumentation.

  • Real-time profiling for Java using JFR metrics #333

    Real-time profiling for Java using JFR metrics
    is now enabled by default.


    Notice: this feature will cause an increase in the consumption of data.
    The amount depends on the application. It can be disabled by adding the
    following to the agent yaml config nested under the common stanza:

      jfr:
        enabled: false
    

    For more information, see JFR core README.

Version 7.0.1

15 Jun 20:45
Compare
Choose a tag to compare

Fixes an issue where the agent would break OkHttp versions 3.X and lower. (#324)

Version 7.0.0

10 Jun 00:53
4d95465
Compare
Choose a tag to compare

New features and improvements:

  • Real-time profiling for Java using JFR metrics is now fully integrated into the Java agent. See the JFR core README for additional details.

    This feature requires a supported version of Java (Java 8 (specifically version 8u262+) or Java 11+) and is currently disabled by default. To enable it set the following in your yaml (indented 2 spaces under the common stanza).

      jfr:
        enabled: true
    

    Notice: If you were previously using the jfr-daemon jar as an agent extension or standalone process you should remove that option to avoid potential conflicts with the JFR service that is now built into the agent.

  • Not compatible with Java 7. In order to continue to innovate and efficiently provide new capabilities to our customers who run on the JVM, this and future agent versions are not compatible with Java 7. If you are running Java 7, you may continue to use Java agent 6.5.0 or lower. For details, see this topic on the Explorers Hub.

  • Adds support for akka http with Scala 2.13 #271

  • Class annotation to trace lambda methods #274

  • Class annotation to trace methods by return type #275

Fixes:

  • Fixes an issue that could cause multiple versions of akka-http-core instrumentation to apply at the same time. #208
  • The agent will now log dropped events at FINE instead of WARN to decrease verbosity. #296
  • Fixes Javadoc comments that incorrectly stated that, when calling the noticeError API multiple times, the first error would be reported when in fact it is the last error that is reported. #313

Support statement:

  • New Relic recommends that you upgrade the agent regularly to ensure that you're getting the latest features and performance benefits. Additionally, older releases will no longer be supported when they reach end-of-life.

Version 6.5.0

26 Apr 19:09
dc9f29c
Compare
Choose a tag to compare

New Features and Improvements:

  • The agent no longer bundles SSL certificates with it and the use_private_ssl option that configured the agent to use
    the previously bundled certificates has been removed. By default, the agent will use the SSL truststore provided by
    the JVM unless it is explicitly configured to use a different truststore with the ca_bundle_path option. See Configuring your SSL certificates for more details. (#245)

Fixes:

  • Fixes an issue that could cause incorrect transaction naming when using JAX-RS sub-resources. (#234)
  • Reactor Netty instrumentation improvements and fixes. (#237, #239, #243)

Deprecation Notice

  • Java 7 compatibility deprecation

In order to continue to innovate and efficiently provide new capabilities to our customers who run on the JVM, Java 7
support has been deprecated and this will be the last version of the agent compatible with it.

If you are running Java 7, you may continue to use Java agent 6.5.0 or lower.

Support statement:

  • New Relic recommends that you upgrade the agent regularly to ensure that you're getting the latest features and performance benefits. Additionally, older releases will no longer be supported when they reach end-of-life.

Version 6.4.2

01 Mar 20:44
Compare
Choose a tag to compare

Fixes an issue that could cause some instrumentation modules (e.g. jax-rs-1.0) to have a WeaveViolation and not apply properly.

Version 6.4.1

02 Feb 22:09
Compare
Choose a tag to compare
  • Fixes an issue with a race condition in the Infinite Tracing Span Observer. The issue could lead to dropped spans. #206

Version 6.4.0

27 Jan 18:10
6f000cd
Compare
Choose a tag to compare

🚨 There is an issue with this agent release that could lead to spans not being sent to Infinite Tracing. Please use 6.4.1 instead. (#206)

Note:

New Features and Improvements:

  • Spring Webflux/Netty Reactor instrumentation improvements for enhanced tracing across asynchronous thread hops (#174, #190, #195).
  • Infinite tracing will now utilize a backoff sequence on retries. (#180)
  • New distributed tracing APIs have been added to better support general use cases for propagating distributed tracing headers. In particular the new APIs provide enhanced support for W3C Trace Context but are flexible enough to support other header protocols that may be supported by the agent in the future. Previous distributed tracing APIs have been deprecated and are subject to removal in a future agent release. See documentation here. (#188)

Fixes:

  • Updated the Java agent’s snakeyaml dependency to 1.27. (#182)
  • In some environments the jar collector service could lead to high CPU utilization at application startup. The agent now provides a configurable rate limiter, with a reasonable default, for processing jars detected in the application’s environment. See documentation here. (#183)

Support statement:

  • New Relic recommends that you upgrade the agent regularly to ensure that you're getting the latest features and performance benefits. Additionally, older releases will no longer be supported when they reach end-of-life.

Version 6.3.0

17 Dec 21:13
1e1ea95
Compare
Choose a tag to compare

New Features and Improvements:

Fixes:

Support statement:

  • New Relic recommends that you upgrade the agent regularly to ensure that you're getting the latest features and performance benefits. Additionally, older releases will no longer be supported when they reach end-of-life.

Version 6.2.1

17 Nov 19:59
Compare
Choose a tag to compare
  • Fixes an issue where Spring-Webflux applications with endpoints returning no or empty content could become unresponsive: #115