Class WebClientExchangeTags
java.lang.Object
org.springframework.boot.actuate.metrics.web.reactive.client.WebClientExchangeTags
Deprecated, for removal: This API element is subject to removal in a future version.
Factory methods for creating
Tags related to a request-response exchange
performed by a WebClient.- Since:
- 2.1.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic io.micrometer.core.instrument.TagclientName(org.springframework.web.reactive.function.client.ClientRequest request) Deprecated, for removal: This API element is subject to removal in a future version.static io.micrometer.core.instrument.Tagmethod(org.springframework.web.reactive.function.client.ClientRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Creates amethodTagfor themethodof the givenrequest.static io.micrometer.core.instrument.Tagoutcome(org.springframework.web.reactive.function.client.ClientResponse response) Deprecated, for removal: This API element is subject to removal in a future version.Creates anoutcomeTagderived from thestatusof the givenresponse.static io.micrometer.core.instrument.Tagstatus(org.springframework.web.reactive.function.client.ClientResponse response, Throwable throwable) Deprecated, for removal: This API element is subject to removal in a future version.Creates astatusTagderived from theClientResponse.statusCode()of the givenresponseif available, the thrown exception otherwise, or considers the request as Cancelled as a last resort.static io.micrometer.core.instrument.Taguri(org.springframework.web.reactive.function.client.ClientRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Creates auriTagfor the URI path of the givenrequest.
-
Method Details
-
method
public static io.micrometer.core.instrument.Tag method(org.springframework.web.reactive.function.client.ClientRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Creates amethodTagfor themethodof the givenrequest.- Parameters:
request- the request- Returns:
- the method tag
-
uri
public static io.micrometer.core.instrument.Tag uri(org.springframework.web.reactive.function.client.ClientRequest request) Deprecated, for removal: This API element is subject to removal in a future version.Creates auriTagfor the URI path of the givenrequest.- Parameters:
request- the request- Returns:
- the uri tag
-
status
public static io.micrometer.core.instrument.Tag status(org.springframework.web.reactive.function.client.ClientResponse response, Throwable throwable) Deprecated, for removal: This API element is subject to removal in a future version.Creates astatusTagderived from theClientResponse.statusCode()of the givenresponseif available, the thrown exception otherwise, or considers the request as Cancelled as a last resort.- Parameters:
response- the responsethrowable- the exception- Returns:
- the status tag
- Since:
- 2.3.0
-
clientName
public static io.micrometer.core.instrument.Tag clientName(org.springframework.web.reactive.function.client.ClientRequest request) Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
request- the request- Returns:
- the client.name tag
-
outcome
public static io.micrometer.core.instrument.Tag outcome(org.springframework.web.reactive.function.client.ClientResponse response) Deprecated, for removal: This API element is subject to removal in a future version.Creates anoutcomeTagderived from thestatusof the givenresponse.- Parameters:
response- the response- Returns:
- the outcome tag
- Since:
- 2.2.0
-
DefaultClientRequestObservationConvention