You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Introducing FixedRate Sampling v2 Using Telemetry Processors
18
18
- Fixed issue #436 (TraceTelemetry with Severity is not shown in UI). This fixes a regression issue with `TelemetryClient.trackTrace` and `TelemetryClient.trackException`.
19
+
- Introducing support for [cross-component correlation](https://docs.microsoft.com/en-us/azure/application-insights/application-insights-correlation). Addresses issue [#457](https://github.com/Microsoft/ApplicationInsights-Java/issues/457).
20
+
- Changed signature of com.microsoft.applicationinsights.internal.agent.CoreAgentNotificationHandler.httpMethodFinished. It now includes correlation information.
19
21
- Compilation now targets Java 1.7. Java 1.6 is no longer supported.
20
22
- Adding system property `applicationinsights.configurationDirectory` to allow to explicitly set directory containing the config file.
Copy file name to clipboardExpand all lines: agent/src/main/java/com/microsoft/applicationinsights/agent/internal/coresync/AgentNotificationsHandler.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -56,11 +56,13 @@ public interface AgentNotificationsHandler {
56
56
* A HTTP call that was ended
57
57
* @param identifier - HTTP identifier, i.e. the callser
58
58
* @param method - 'GET'/'PUT' etc.
59
+
* @param correlationId - The correlation Id for the associated HTTP call
59
60
* @param uri - The falled uri
61
+
* @param target - The target resource of the HTTP call
Copy file name to clipboardExpand all lines: agent/src/main/java/com/microsoft/applicationinsights/agent/internal/coresync/impl/ImplementationsCoordinator.java
Copy file name to clipboardExpand all lines: web/src/main/java/com/microsoft/applicationinsights/web/extensibility/initializers/WebOperationIdTelemetryInitializer.java
Copy file name to clipboardExpand all lines: web/src/main/java/com/microsoft/applicationinsights/web/extensibility/modules/WebRequestTrackingTelemetryModule.java
0 commit comments