Class DefaultWebMvcTagsProvider

java.lang.Object
org.springframework.boot.actuate.metrics.web.servlet.DefaultWebMvcTagsProvider
All Implemented Interfaces:
WebMvcTagsProvider

public class DefaultWebMvcTagsProvider extends Object implements WebMvcTagsProvider
Default implementation of WebMvcTagsProvider.
Since:
2.0.0
Author:
Jon Schneider
  • Constructor Details

    • DefaultWebMvcTagsProvider

      public DefaultWebMvcTagsProvider()
    • DefaultWebMvcTagsProvider

      public DefaultWebMvcTagsProvider(List<WebMvcTagsContributor> contributors)
      Creates a new DefaultWebMvcTagsProvider that will provide tags from the given contributors in addition to its own.
      Parameters:
      contributors - the contributors that will provide additional tags
      Since:
      2.3.0
    • DefaultWebMvcTagsProvider

      public DefaultWebMvcTagsProvider(boolean ignoreTrailingSlash)
    • DefaultWebMvcTagsProvider

      public DefaultWebMvcTagsProvider(boolean ignoreTrailingSlash, List<WebMvcTagsContributor> contributors)
      Creates a new DefaultWebMvcTagsProvider that will provide tags from the given contributors in addition to its own.
      Parameters:
      ignoreTrailingSlash - whether trailing slashes should be ignored when determining the uri tag.
      contributors - the contributors that will provide additional tags
      Since:
      2.3.0
  • Method Details

    • getTags

      public Iterable<io.micrometer.core.instrument.Tag> getTags(HttpServletRequest request, HttpServletResponse response, Object handler, Throwable exception)
      Description copied from interface: WebMvcTagsProvider
      Provides tags to be associated with metrics for the given request and response exchange.
      Specified by:
      getTags in interface WebMvcTagsProvider
      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

      public Iterable<io.micrometer.core.instrument.Tag> getLongRequestTags(HttpServletRequest request, Object handler)
      Description copied from interface: WebMvcTagsProvider
      Provides tags to be used by long task timers.
      Specified by:
      getLongRequestTags in interface WebMvcTagsProvider
      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