Allow additional tags to be contributed to WebMvc and WebFlux defaults
Closes gh-20175pull/20525/head
parent
e7ece77a7c
commit
ef9960c69f
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* 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.reactive.server;
|
||||||
|
|
||||||
|
import io.micrometer.core.instrument.Tag;
|
||||||
|
|
||||||
|
import org.springframework.web.server.ServerWebExchange;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A contributor of {@link Tag Tags} for WebFlux-based request handling. Typically used by
|
||||||
|
* a {@link WebFluxTagsProvider} to provide tags in addition to its defaults.
|
||||||
|
*
|
||||||
|
* @author Andy Wilkinson
|
||||||
|
* @since 2.3.0
|
||||||
|
*/
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface WebFluxTagsContributor {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides tags to be associated with metrics for the given {@code exchange}.
|
||||||
|
* @param exchange the exchange
|
||||||
|
* @param ex the current exception (may be {@code null})
|
||||||
|
* @return tags to associate with metrics for the request and response exchange
|
||||||
|
*/
|
||||||
|
Iterable<Tag> httpRequestTags(ServerWebExchange exchange, Throwable ex);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* 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 javax.servlet.http.HttpServletRequest;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
|
import io.micrometer.core.instrument.LongTaskTimer;
|
||||||
|
import io.micrometer.core.instrument.Tag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A contributor of {@link Tag Tags} for Spring MVC-based request handling. Typically used
|
||||||
|
* by a {@link WebMvcTagsProvider} to provide tags in addition to its defaults.
|
||||||
|
*
|
||||||
|
* @author Andy Wilkinson
|
||||||
|
* @since 2.3.0
|
||||||
|
*/
|
||||||
|
public interface WebMvcTagsContributor {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides tags to be associated with metrics for the given {@code request} and
|
||||||
|
* {@code response} exchange.
|
||||||
|
* @param request the request
|
||||||
|
* @param response the response
|
||||||
|
* @param handler the handler for the request or {@code null} if the handler is
|
||||||
|
* unknown
|
||||||
|
* @param exception the current exception, if any
|
||||||
|
* @return tags to associate with metrics for the request and response exchange
|
||||||
|
*/
|
||||||
|
Iterable<Tag> getTags(HttpServletRequest request, HttpServletResponse response, Object handler,
|
||||||
|
Throwable exception);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides tags to be used by {@link LongTaskTimer long task timers}.
|
||||||
|
* @param request the HTTP request
|
||||||
|
* @param handler the handler for the request or {@code null} if the handler is
|
||||||
|
* unknown
|
||||||
|
* @return tags to associate with metrics recorded for the request
|
||||||
|
*/
|
||||||
|
Iterable<Tag> getLongRequestTags(HttpServletRequest request, Object handler);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,99 @@
|
|||||||
|
/*
|
||||||
|
* 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.endpoint.web.servlet;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import java.util.stream.StreamSupport;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
|
import com.datastax.oss.driver.shaded.guava.common.base.Functions;
|
||||||
|
import io.micrometer.core.instrument.Tag;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import org.springframework.boot.actuate.metrics.web.servlet.DefaultWebMvcTagsProvider;
|
||||||
|
import org.springframework.boot.actuate.metrics.web.servlet.WebMvcTagsContributor;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for {@link DefaultWebMvcTagsProvider}.
|
||||||
|
*
|
||||||
|
* @author Andy Wilkinson
|
||||||
|
*/
|
||||||
|
public class DefaultWebMvcTagsProviderTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void whenTagsAreProvidedThenDefaultTagsArePresent() {
|
||||||
|
Map<String, Tag> tags = asMap(new DefaultWebMvcTagsProvider().getTags(null, null, null, null));
|
||||||
|
assertThat(tags).containsOnlyKeys("exception", "method", "outcome", "status", "uri");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void givenSomeContributorsWhenTagsAreProvidedThenDefaultTagsAndContributedTagsArePresent() {
|
||||||
|
Map<String, Tag> tags = asMap(
|
||||||
|
new DefaultWebMvcTagsProvider(Arrays.asList(new TestWebMvcTagsContributor("alpha"),
|
||||||
|
new TestWebMvcTagsContributor("bravo", "charlie"))).getTags(null, null, null, null));
|
||||||
|
assertThat(tags).containsOnlyKeys("exception", "method", "outcome", "status", "uri", "alpha", "bravo",
|
||||||
|
"charlie");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void whenLongRequestTagsAreProvidedThenDefaultTagsArePresent() {
|
||||||
|
Map<String, Tag> tags = asMap(new DefaultWebMvcTagsProvider().getLongRequestTags(null, null));
|
||||||
|
assertThat(tags).containsOnlyKeys("method", "uri");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void givenSomeContributorsWhenLongRequestTagsAreProvidedThenDefaultTagsAndContributedTagsArePresent() {
|
||||||
|
Map<String, Tag> tags = asMap(
|
||||||
|
new DefaultWebMvcTagsProvider(Arrays.asList(new TestWebMvcTagsContributor("alpha"),
|
||||||
|
new TestWebMvcTagsContributor("bravo", "charlie"))).getLongRequestTags(null, null));
|
||||||
|
assertThat(tags).containsOnlyKeys("method", "uri", "alpha", "bravo", "charlie");
|
||||||
|
}
|
||||||
|
|
||||||
|
private Map<String, Tag> asMap(Iterable<Tag> tags) {
|
||||||
|
return StreamSupport.stream(tags.spliterator(), false)
|
||||||
|
.collect(Collectors.toMap(Tag::getKey, Functions.identity()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final class TestWebMvcTagsContributor implements WebMvcTagsContributor {
|
||||||
|
|
||||||
|
private final List<String> tagNames;
|
||||||
|
|
||||||
|
private TestWebMvcTagsContributor(String... tagNames) {
|
||||||
|
this.tagNames = Arrays.asList(tagNames);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Iterable<Tag> getTags(HttpServletRequest request, HttpServletResponse response, Object handler,
|
||||||
|
Throwable exception) {
|
||||||
|
return this.tagNames.stream().map((name) -> Tag.of(name, "value")).collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Iterable<Tag> getLongRequestTags(HttpServletRequest request, Object handler) {
|
||||||
|
return this.tagNames.stream().map((name) -> Tag.of(name, "value")).collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,79 @@
|
|||||||
|
/*
|
||||||
|
* 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.reactive.server;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import java.util.stream.StreamSupport;
|
||||||
|
|
||||||
|
import com.datastax.oss.driver.shaded.guava.common.base.Functions;
|
||||||
|
import io.micrometer.core.instrument.Tag;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import org.springframework.mock.http.server.reactive.MockServerHttpRequest;
|
||||||
|
import org.springframework.mock.web.server.MockServerWebExchange;
|
||||||
|
import org.springframework.web.server.ServerWebExchange;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for {@link DefaultWebFluxTagsProvider}.
|
||||||
|
*
|
||||||
|
* @author Andy Wilkinson
|
||||||
|
*/
|
||||||
|
public class DefaultWebFluxTagsProviderTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void whenTagsAreProvidedThenDefaultTagsArePresent() {
|
||||||
|
ServerWebExchange exchange = MockServerWebExchange.from(MockServerHttpRequest.get("/test"));
|
||||||
|
Map<String, Tag> tags = asMap(new DefaultWebFluxTagsProvider().httpRequestTags(exchange, null));
|
||||||
|
assertThat(tags).containsOnlyKeys("exception", "method", "outcome", "status", "uri");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void givenSomeContributorsWhenTagsAreProvidedThenDefaultTagsAndContributedTagsArePresent() {
|
||||||
|
ServerWebExchange exchange = MockServerWebExchange.from(MockServerHttpRequest.get("/test"));
|
||||||
|
Map<String, Tag> tags = asMap(
|
||||||
|
new DefaultWebFluxTagsProvider(Arrays.asList(new TestWebFluxTagsContributor("alpha"),
|
||||||
|
new TestWebFluxTagsContributor("bravo", "charlie"))).httpRequestTags(exchange, null));
|
||||||
|
assertThat(tags).containsOnlyKeys("exception", "method", "outcome", "status", "uri", "alpha", "bravo",
|
||||||
|
"charlie");
|
||||||
|
}
|
||||||
|
|
||||||
|
private Map<String, Tag> asMap(Iterable<Tag> tags) {
|
||||||
|
return StreamSupport.stream(tags.spliterator(), false)
|
||||||
|
.collect(Collectors.toMap(Tag::getKey, Functions.identity()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final class TestWebFluxTagsContributor implements WebFluxTagsContributor {
|
||||||
|
|
||||||
|
private final List<String> tagNames;
|
||||||
|
|
||||||
|
private TestWebFluxTagsContributor(String... tagNames) {
|
||||||
|
this.tagNames = Arrays.asList(tagNames);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Iterable<Tag> httpRequestTags(ServerWebExchange exchange, Throwable ex) {
|
||||||
|
return this.tagNames.stream().map((name) -> Tag.of(name, "value")).collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue