Interface WebMvcTagsProvider

All Known Implementing Classes:
DefaultWebMvcTagsProvider

@Deprecated(since="3.0.0", forRemoval=true) public interface WebMvcTagsProvider
Deprecated, for removal: This API element is subject to removal in a future version.
since 3.0.0 for removal in 3.2.0 in favor of ServerRequestObservationConvention
Provides Tags for Spring MVC-based request handling.
Since:
2.0.0
Author:
Jon Schneider, Andy Wilkinson
  • Method Summary

    Modifier and Type
    Method
    Description
    Iterable<io.micrometer.core.instrument.Tag>
    Deprecated, for removal: This API element is subject to removal in a future version.
    Provides tags to be used by long task timers.
    Iterable<io.micrometer.core.instrument.Tag>
    getTags(HttpServletRequest request, HttpServletResponse response, Object handler, Throwable exception)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Provides tags to be associated with metrics for the given request and response exchange.
  • Method Details

    • getTags

      Iterable<io.micrometer.core.instrument.Tag> getTags(HttpServletRequest request, HttpServletResponse response, Object handler, Throwable exception)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Provides tags to be associated with metrics for the given request and response exchange.
      Parameters:
      request - the request
      response - the response
      handler - the handler for the request or null if the handler is unknown
      exception - the current exception, if any
      Returns:
      tags to associate with metrics for the request and response exchange
    • getLongRequestTags

      Iterable<io.micrometer.core.instrument.Tag> getLongRequestTags(HttpServletRequest request, Object handler)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Provides tags to be used by long task timers.
      Parameters:
      request - the HTTP request
      handler - the handler for the request or null if the handler is unknown
      Returns:
      tags to associate with metrics recorded for the request