/*
 * Copyright 2012-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.boot.actuate.metrics.web.servlet;

import java.util.regex.Pattern;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import io.micrometer.core.instrument.Tag;

import org.springframework.boot.actuate.metrics.http.Outcome;
import org.springframework.http.HttpStatus;
import org.springframework.util.StringUtils;
import org.springframework.web.servlet.HandlerMapping;
import org.springframework.web.util.pattern.PathPattern;

Factory methods for Tags associated with a request-response exchange that is handled by Spring MVC.
Author:Jon Schneider, Andy Wilkinson, Brian Clozel, Michael McFadyen
Since:2.0.0
/** * Factory methods for {@link Tag Tags} associated with a request-response exchange that * is handled by Spring MVC. * * @author Jon Schneider * @author Andy Wilkinson * @author Brian Clozel * @author Michael McFadyen * @since 2.0.0 */
public final class WebMvcTags { private static final String DATA_REST_PATH_PATTERN_ATTRIBUTE = "org.springframework.data.rest.webmvc.RepositoryRestHandlerMapping.EFFECTIVE_REPOSITORY_RESOURCE_LOOKUP_PATH"; private static final Tag URI_NOT_FOUND = Tag.of("uri", "NOT_FOUND"); private static final Tag URI_REDIRECTION = Tag.of("uri", "REDIRECTION"); private static final Tag URI_ROOT = Tag.of("uri", "root"); private static final Tag URI_UNKNOWN = Tag.of("uri", "UNKNOWN"); private static final Tag EXCEPTION_NONE = Tag.of("exception", "None"); private static final Tag STATUS_UNKNOWN = Tag.of("status", "UNKNOWN"); private static final Tag METHOD_UNKNOWN = Tag.of("method", "UNKNOWN"); private static final Pattern TRAILING_SLASH_PATTERN = Pattern.compile("/$"); private static final Pattern MULTIPLE_SLASH_PATTERN = Pattern.compile("//+"); private WebMvcTags() { }
Creates a method tag based on the method of the given request.
Params:
  • request – the request
Returns:the method tag whose value is a capitalized method (e.g. GET).
/** * Creates a {@code method} tag based on the {@link HttpServletRequest#getMethod() * method} of the given {@code request}. * @param request the request * @return the method tag whose value is a capitalized method (e.g. GET). */
public static Tag method(HttpServletRequest request) { return (request != null) ? Tag.of("method", request.getMethod()) : METHOD_UNKNOWN; }
Creates a status tag based on the status of the given response.
Params:
  • response – the HTTP response
Returns:the status tag derived from the status of the response
/** * Creates a {@code status} tag based on the status of the given {@code response}. * @param response the HTTP response * @return the status tag derived from the status of the response */
public static Tag status(HttpServletResponse response) { return (response != null) ? Tag.of("status", Integer.toString(response.getStatus())) : STATUS_UNKNOWN; }
Creates a uri tag based on the URI of the given request. Uses the BEST_MATCHING_PATTERN_ATTRIBUTE.BEST_MATCHING_PATTERN_ATTRIBUTE best matching pattern if available. Falling back to REDIRECTION for 3xx responses, NOT_FOUND for 404 responses, root for requests with no path info, and UNKNOWN for all other requests.
Params:
  • request – the request
  • response – the response
Returns:the uri tag derived from the request
/** * Creates a {@code uri} tag based on the URI of the given {@code request}. Uses the * {@link HandlerMapping#BEST_MATCHING_PATTERN_ATTRIBUTE} best matching pattern if * available. Falling back to {@code REDIRECTION} for 3xx responses, {@code NOT_FOUND} * for 404 responses, {@code root} for requests with no path info, and {@code UNKNOWN} * for all other requests. * @param request the request * @param response the response * @return the uri tag derived from the request */
public static Tag uri(HttpServletRequest request, HttpServletResponse response) { return uri(request, response, false); }
Creates a uri tag based on the URI of the given request. Uses the BEST_MATCHING_PATTERN_ATTRIBUTE.BEST_MATCHING_PATTERN_ATTRIBUTE best matching pattern if available. Falling back to REDIRECTION for 3xx responses, NOT_FOUND for 404 responses, root for requests with no path info, and UNKNOWN for all other requests.
Params:
  • request – the request
  • response – the response
  • ignoreTrailingSlash – whether to ignore the trailing slash
Returns:the uri tag derived from the request
/** * Creates a {@code uri} tag based on the URI of the given {@code request}. Uses the * {@link HandlerMapping#BEST_MATCHING_PATTERN_ATTRIBUTE} best matching pattern if * available. Falling back to {@code REDIRECTION} for 3xx responses, {@code NOT_FOUND} * for 404 responses, {@code root} for requests with no path info, and {@code UNKNOWN} * for all other requests. * @param request the request * @param response the response * @param ignoreTrailingSlash whether to ignore the trailing slash * @return the uri tag derived from the request */
public static Tag uri(HttpServletRequest request, HttpServletResponse response, boolean ignoreTrailingSlash) { if (request != null) { String pattern = getMatchingPattern(request); if (pattern != null) { if (ignoreTrailingSlash && pattern.length() > 1) { pattern = TRAILING_SLASH_PATTERN.matcher(pattern).replaceAll(""); } if (pattern.isEmpty()) { return URI_ROOT; } return Tag.of("uri", pattern); } if (response != null) { HttpStatus status = extractStatus(response); if (status != null) { if (status.is3xxRedirection()) { return URI_REDIRECTION; } if (status == HttpStatus.NOT_FOUND) { return URI_NOT_FOUND; } } } String pathInfo = getPathInfo(request); if (pathInfo.isEmpty()) { return URI_ROOT; } } return URI_UNKNOWN; } private static HttpStatus extractStatus(HttpServletResponse response) { try { return HttpStatus.valueOf(response.getStatus()); } catch (IllegalArgumentException ex) { return null; } } private static String getMatchingPattern(HttpServletRequest request) { PathPattern dataRestPathPattern = (PathPattern) request.getAttribute(DATA_REST_PATH_PATTERN_ATTRIBUTE); if (dataRestPathPattern != null) { return dataRestPathPattern.getPatternString(); } return (String) request.getAttribute(HandlerMapping.BEST_MATCHING_PATTERN_ATTRIBUTE); } private static String getPathInfo(HttpServletRequest request) { String pathInfo = request.getPathInfo(); String uri = StringUtils.hasText(pathInfo) ? pathInfo : "/"; uri = MULTIPLE_SLASH_PATTERN.matcher(uri).replaceAll("/"); return TRAILING_SLASH_PATTERN.matcher(uri).replaceAll(""); }
Creates an exception tag based on the simple name of the class of the given exception.
Params:
  • exception – the exception, may be null
Returns:the exception tag derived from the exception
/** * Creates an {@code exception} tag based on the {@link Class#getSimpleName() simple * name} of the class of the given {@code exception}. * @param exception the exception, may be {@code null} * @return the exception tag derived from the exception */
public static Tag exception(Throwable exception) { if (exception != null) { String simpleName = exception.getClass().getSimpleName(); return Tag.of("exception", StringUtils.hasText(simpleName) ? simpleName : exception.getClass().getName()); } return EXCEPTION_NONE; }
Creates an outcome tag based on the status of the given response.
Params:
  • response – the HTTP response
Returns:the outcome tag derived from the status of the response
Since:2.1.0
/** * Creates an {@code outcome} tag based on the status of the given {@code response}. * @param response the HTTP response * @return the outcome tag derived from the status of the response * @since 2.1.0 */
public static Tag outcome(HttpServletResponse response) { Outcome outcome = (response != null) ? Outcome.forStatus(response.getStatus()) : Outcome.UNKNOWN; return outcome.asTag(); } }