(
event: ErrorEvent,
options?: { readonly logPayload?: boolean },
)
| 208 | * grouped. |
| 209 | */ |
| 210 | export const beforeSendCloudEvent = ( |
| 211 | event: ErrorEvent, |
| 212 | options?: { readonly logPayload?: boolean }, |
| 213 | ): ErrorEvent | null => { |
| 214 | const reported = beforeSendWithOtelCorrelation(event, options); |
| 215 | return reported === null ? null : withStableGroupingFingerprint(reported); |
| 216 | }; |
| 217 | |
| 218 | /** |
| 219 | * The Sentry options the worker and every Durable Object install. It lives |
no test coverage detected