Releases: microsoft/ApplicationInsights-Java
Releases · microsoft/ApplicationInsights-Java
Application Insights Java SDK 2.6.0-BETA
Application Insights Java SDK 2.5.1
Announcing Application Insights Java SDK 2.5.1!
There were no changes since 2.5.1-BETA.2.
Changes Since 2.5.0
Enhancements
- Connection String introduced for better government cloud support
- Agent now captures MongoDB queries
Bug Fixes
Application Insights Java SDK 2.5.1-BETA.2
Application Insights Java SDK 2.5.1-BETA
Introducing Application Insights Java SDK 2.5.1-BETA!
Enhancements
- Connection String introduced for better government cloud support
- Agent now captures MongoDB queries
Bug Fixes
- Fixed exception thrown by agent when using Apache HttpClient ResponseHandler methods (#1067)
Application Insights Java SDK 2.5.0
Announcing Application Insights Java SDK 2.5.0!
There were no changes since 2.5.0-BETA.5.
Summary of Changes Since 2.4.x
Enhancements
SDK-wide
- Added Java 9/10/11/12 support
- Introduced new jar,
applicationinsights-web-auto.jar, which automatically registers the web filter. No need to modifyweb.xmlor add@WebFilter. - Simplifies role name configuration by adding
<RoleName>tag inApplicationInsights.xml.
New Agent Features
- Generic JDBC driver support: captures JDBC queries for all JDBC drivers.
- Automatically captures dependencies for async requests by tracking the request across multiple threads.
- Agent now captures application logging from Log4j 2/1.2 and Logback.
- This removes the need to add the
applicationinsights-logging-*.jardependency and modify the application's logging configuration.
- This removes the need to add the
- Improved HTTP client support:
java.net.HttpURLConnection- Apache HttpClient 3.x
- OkHttp3
- OkHttp2 now supports distributed tracing
- Sets
Operation Nameautomatically based on Spring@RequestMapping, JAX-RS@Pathand Struts action class/method name.- This removes the need for
RequestNameHandlerInterceptorAdapteror other interceptors.
- This removes the need for
- Agent now supports multiple applications deployed in the same application server (temporarily in the 2.4.0)
- Simplified JBoss and Wildfly deployment when using the agent: no need for workarounds using
jboss.modules.system.pkgs,java.util.logging.manager,-Xbootclasspath - Added agent logging capture threshold, configurable via
<Logging threshold="warn" />
in theAI-Agent.xml, with default thresholdwarn(#1026)
Removed/Deprecated
- Removed support for
<RuntimeException>custom instrumentation inAI-Agent.xml
Bug Fixes
- #969 Fixes ability to configure Live Metrics iKey programatically.
- #978 Possible NPE during development
- Fixed request telemetry displaying
200response code for some failed requests (#810) - Fixed GC performance counters not working (#929)
Miscellaneous
- Starting with this release, you can now find the agent and the collectd plugin on Maven Central as
applicationinsights-agentandapplicationinsights-collectdunder the same group,com.microsoft.azure.
Application Insights Java SDK 2.5.0-BETA.5
Introducing Application Insights Java SDK 2.5.0-BETA.5!
Bug Fixes
- Fixed
ClassCastExceptionthat could happen when usingHttpURLConnection(#1053)
Application Insights Java SDK 2.5.0-BETA.4
Application Insights Java SDK 2.5.0-BETA.3
Introducing Application Insights Java SDK 2.5.0-BETA.3!
Enhancements
- Added agent logging capture threshold, configurable via
<Logging threshold="warn" />
in theAI-Agent.xml, with default thresholdwarn(#1026)
Bug Fixes
Application Insights Java SDK 2.4.1
This introduces Application Insights Java SDK 2.4.1. This release includes a critical bug fix.
Bug Fixes
- Fixed #910. In some rare cases, correlation id serialization would produce an id with a smaller than the expected length. This caused validation to fail and an exception to be thrown.
Miscellaneous
- Spring boot dependencies were upgraded to version 1.5.21
Application Insights Java SDK 2.5.0-BETA.2
Introducing Application Insights Java SDK 2.5.0-BETA.2!
Enhancements
- Added back support for
<Class>custom instrumentation inAI-Agent.xml