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
Hubs/Scopes Merge 31 - Fix EventProcessor ordering on Scopes (#3360)
* replace hub with scopes
* Add Scopes
* Introduce `IScopes` interface.
* Replace `IHub` with `IScopes` in core
* Replace `IHub` with `IScopes` in android core
* Replace `IHub` with `IScopes` in android integrations
* Replace `IHub` with `IScopes` in apollo integrations
* Replace `IHub` with `IScopes` in okhttp integration
* Replace `IHub` with `IScopes` in graphql integration
* Replace `IHub` with `IScopes` in logging integrations
* Replace `IHub` with `IScopes` in more integrations
* Replace `IHub` with `IScopes` in OTel integration
* Replace `IHub` with `IScopes` in Spring 5 / Spring Boot 2 integrations
* Replace `IHub` with `IScopes` in Spring 6 / Spring Boot 3 integrations
* Replace `IHub` with `IScopes` in samples
* gitscopes -> github
* Replace ThreadLocal with ScopesStorage
* Move client and throwable to span map to scope
* Add global scope
* use global scope in Scopes
* Implement pushScope popScope and withScope for Scopes
* Add pushIsolationScope; add fork methods to ISCope
* Use separate scopes for current, isolation and global scope; rename mainScopes to rootScopes
* Allow controlling which scope configureScope uses
* Combine scopes
* Use new API for CRONS integrations
* Add lifecycle helper
* Change spring integrations to use new API
* Use new API in servlet integrations
* Use new API for kotlin coroutines and wrapers for Supplier/Callable
* Discussion TODOs
* Fix breadcrumb ordering
* Mark TODOS with [HSM]
* Add getGlobalScope and forkedRootScopes to IScopes
* Fix EventProcessor ordering on scopes
Copy file name to clipboardExpand all lines: sentry-opentelemetry/sentry-opentelemetry-core/src/main/java/io/sentry/opentelemetry/OpenTelemetryLinkErrorEventProcessor.java
+5
Original file line number
Diff line number
Diff line change
@@ -99,4 +99,9 @@ public OpenTelemetryLinkErrorEventProcessor() {
Copy file name to clipboardExpand all lines: sentry-servlet-jakarta/src/main/java/io/sentry/servlet/jakarta/SentryRequestHttpServletRequestProcessor.java
+5
Original file line number
Diff line number
Diff line change
@@ -56,4 +56,9 @@ public SentryRequestHttpServletRequestProcessor(@NotNull HttpServletRequest http
Copy file name to clipboardExpand all lines: sentry-spring-jakarta/src/main/java/io/sentry/spring/jakarta/SentryRequestHttpServletRequestProcessor.java
+6
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@
8
8
importio.sentry.util.Objects;
9
9
importjakarta.servlet.http.HttpServletRequest;
10
10
importorg.jetbrains.annotations.NotNull;
11
+
importorg.jetbrains.annotations.Nullable;
11
12
12
13
/** Attaches transaction name from the HTTP request to {@link SentryEvent}. */
13
14
@Open
@@ -30,4 +31,9 @@ public SentryRequestHttpServletRequestProcessor(
0 commit comments