Open
Description
Description
I am implementing a API backend in Kotlin using Ktor, a popular Kotlin web framework that uses coroutines for requests. I am testing using Bugsnag since I already use that for Android. However, there seems no support for Coroutines, which frequently switch threads. So I can't store threaded metadata properly, and probably the startSession() stuff will also cause issues when multiple coroutine calls are handled.
Describe the solution you'd like
Support a form of CoroutineContext like OpenTelemetry or Sentry does.
Describe alternatives you've considered
Additional context
Quite vital for modern Kotlin web/api apps.