(methodName: string)
| 18 | * Gets the storage key for a specific method's trace link. |
| 19 | */ |
| 20 | export function getTraceLinkKey(methodName: string): string { |
| 21 | return `${SENTRY_TRACE_LINK_KEY_PREFIX}${methodName}`; |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Stores the current span context in Durable Object storage for trace linking. |
no outgoing calls
no test coverage detected