Closed
Description
Affects: Spring Framework 6.0.4
Problem
After upgrading including webflux
version 6.0.4, the URI tag from the http.client.requests
metrics are always none
when making web client calls.
After the web client is called several times, the output from the metrics/http.client.request
endpoint looks like this
Steps to reproduce
- Create a Srping Boot 3.0.2 application with reactive web.
- Add
org.springframework.boot:spring-boot-starter-actuator
andio.micrometer:micrometer-registry-prometheus
dependencies. - Create a simple get endpoint that calls a webclient and perform several get requests.
- Check the
metrics/http.client.request
endpoint, look at the uri tag that has value "none"
I created a simple demo project to reproduce the issue here.