Interface WebFluxTagsContributor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@Deprecated(since="3.0.0",
forRemoval=true)
public interface WebFluxTagsContributor
Deprecated, for removal: This API element is subject to removal in a future version.
A contributor of
Tags for WebFlux-based request handling. Typically used by
a WebFluxTagsProvider to provide tags in addition to its defaults.- Since:
- 2.3.0
-
Method Summary
Modifier and TypeMethodDescriptionIterable<io.micrometer.core.instrument.Tag>httpRequestTags(org.springframework.web.server.ServerWebExchange exchange, Throwable ex) Deprecated, for removal: This API element is subject to removal in a future version.Provides tags to be associated with metrics for the givenexchange.
-
Method Details
-
httpRequestTags
Iterable<io.micrometer.core.instrument.Tag> httpRequestTags(org.springframework.web.server.ServerWebExchange exchange, Throwable ex) Deprecated, for removal: This API element is subject to removal in a future version.Provides tags to be associated with metrics for the givenexchange.- Parameters:
exchange- the exchangeex- the current exception (may benull)- Returns:
- tags to associate with metrics for the request and response exchange
-
ServerRequestObservationConvention