Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Use subheadings with the "=====" level for adding notes for unreleased changes:
[float]
===== Features
* Added support for correlating APM data with elastic universal profiling data - {pull}3615[#3615], {pull}3602[#3602], {pull}3607[#3607], {pull}3598[#3598]
* Excluded latest AppDynamics packages from instrumentation (`com.cisco.mtagent.*`) - {pull}3632[#3632]

[float]
===== Bug fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,8 @@ public Iterable<? extends List<Class<?>>> onError(int index, List<Class<?>> batc
.or(nameStartsWith("com.singularity."))
.or(any(), classLoaderWithNamePrefix("com.appdynamics."))
.or(nameStartsWith("com.appdynamics."))
.or(any(), classLoaderWithNamePrefix("com.cisco.mtagent."))
.or(nameStartsWith("com.cisco.mtagent."))
.or(any(), classLoaderWithNamePrefix("com.instana."))
.or(nameStartsWith("com.instana."))
.or(any(), classLoaderWithNamePrefix("datadog."))
Expand Down