David Melia

Results 23 comments of David Melia

Hi @mattrpav, has any work been progressed on the jakarta transition. This is now particularly relevant now Spring Boot 3 is out which has moved to jakarta and Java 17?...

@sothawo I'm also interested in this and can see the other Spring Data projects have support for this: - https://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis.observability - https://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#mongodb.observability even a section in the spring data elastic...

Hi, as an FYI this is the solution I found to add observation to Spring Data Elastic Reactive ``` import io.micrometer.core.instrument.MeterRegistry; import io.micrometer.core.instrument.binder.httpcomponents.MicrometerHttpClientInterceptor; import org.apache.http.impl.nio.client.HttpAsyncClientBuilder; import org.elasticsearch.client.RestClientBuilder; import org.springframework.boot.autoconfigure.elasticsearch.RestClientBuilderCustomizer; import...