Ryosuke Hasebe
Ryosuke Hasebe
## Feature Request ### Is your feature request related to a problem? Please describe Currently, there is an little issue with TracingContext propagation when using Kotlin Coroutines. In coroutines, there...
## Bug Report #### Current Behavior & Input Code My product uses sentinel's master node discovery. https://github.com/lettuce-io/lettuce-core/wiki/Redis-Sentinel#sentinel.redis-discovery-using-redis-sentinel The other day, the redis sentinel node(VM) became unable to return a response...
## Feature I want an option that does not include the SQL statement in the tag ## Rationale and Example Scenario Currently, when I apply mysql's Tracing Query Interceptor, sql...
## MyBatis version mybatis: 3.5.10 mybatis-spring-boot-starter: 2.2.2 org.mybatis:mybatis-spring:2.0.7 ## Database vendor and version mysql 5.7.27 (But this issue is not related to mysql) ## Test case or example project It's...
## Motivation There are cases where the coroutine dispatcher is changed when performing blocking processing. ```kotlin @GetMapping("/sample") suspend fun sample(): String { // do non-blocking call withContext(blockingDispatcher) { // do...
https://youtrack.jetbrains.com/issue/KT-54205/Support-jakarta-Nullability-annotations Many users are migrating from `javax.*` to `jakarta.*` as a result of spring's javax EE migration. If we are careless at this time and migrate `javax.annotation.Nullable` to `jakarta.annotation.Nullable` as...
The request that was addressed in the following issue seems to have disappeared in pyroscope 1.1 https://github.com/grafana/pyroscope/issues/1186
micrometer-context-propagation is now available. https://github.com/micrometer-metrics/context-propagation And the reactor supports micrometer-context-propagation. https://spring.io/blog/2023/03/30/context-propagation-with-project-reactor-3-unified-bridging-between-reactive Currently, Armeria provides [RequestContextHooks](https://github.com/line/armeria/blob/5f9c1b679d1581a34dcd13fa56a5a22290e3d916/reactor3/src/main/java/com/linecorp/armeria/common/reactor3/RequestContextHooks.java), which could be replaced by providing an extension to micrometer-context-propagation. like this: ```kotlin // Sorry,...
## Motivation This is a similar issue. https://github.com/reactor/reactor-core/issues/3406 For users using kotlin coroutine, [ThreadContextElement](https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-thread-context-element/) is used to propagate MDC, etc. The block operator is supported by [Hooks.automaticContextPropagation](https://github.com/reactor/reactor-core/pull/3420), but not the...
There is a change from spring boot3 (spring 6) to jakarta.servlet. Currently, brave-instrumention-spring-webmvc only supports javax.servlet. Are there any plans to support jakarta.servlet? In the long run, I think spring...