Skip to content

Commit

Permalink
Support nested requests in MetricsClientHttpRequestInterceptor
Browse files Browse the repository at this point in the history
Prior to this commit, requests made by `HttpRequestInterceptor`
instances configured on `RestTemplate` would not be recorded
properly.

This commit ensures that nested requests are recorded separately.

Closes gh-20231
  • Loading branch information
nosan authored and mbhave committed Feb 20, 2020
1 parent 625b40a commit 1a8c321
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* 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.
Expand All @@ -18,6 +18,8 @@

import java.io.IOException;
import java.net.URI;
import java.util.Deque;
import java.util.LinkedList;
import java.util.Map;
import java.util.concurrent.TimeUnit;

Expand All @@ -41,7 +43,7 @@
*/
class MetricsClientHttpRequestInterceptor implements ClientHttpRequestInterceptor {

private static final ThreadLocal<String> urlTemplate = new NamedThreadLocal<>("Rest Template URL Template");
private static final ThreadLocal<Deque<String>> urlTemplate = new UrlTemplateThreadLocal();

private final MeterRegistry meterRegistry;

Expand Down Expand Up @@ -96,7 +98,9 @@ public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttp
finally {
getTimeBuilder(request, response).register(this.meterRegistry).record(System.nanoTime() - startTime,
TimeUnit.NANOSECONDS);
urlTemplate.remove();
if (urlTemplate.get().isEmpty()) {
urlTemplate.remove();
}
}
}

Expand All @@ -105,13 +109,13 @@ UriTemplateHandler createUriTemplateHandler(UriTemplateHandler delegate) {

@Override
public URI expand(String url, Map<String, ?> arguments) {
urlTemplate.set(url);
urlTemplate.get().push(url);
return delegate.expand(url, arguments);
}

@Override
public URI expand(String url, Object... arguments) {
urlTemplate.set(url);
urlTemplate.get().push(url);
return delegate.expand(url, arguments);
}

Expand All @@ -120,8 +124,21 @@ public URI expand(String url, Object... arguments) {

private Timer.Builder getTimeBuilder(HttpRequest request, ClientHttpResponse response) {
return this.autoTimer.builder(this.metricName)
.tags(this.tagProvider.getTags(urlTemplate.get(), request, response))
.tags(this.tagProvider.getTags(urlTemplate.get().poll(), request, response))
.description("Timer of RestTemplate operation");
}

private static final class UrlTemplateThreadLocal extends NamedThreadLocal<Deque<String>> {

private UrlTemplateThreadLocal() {
super("Rest Template URL Template");
}

@Override
protected Deque<String> initialValue() {
return new LinkedList<>();
}

}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2019 the original author or authors.
* 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.
Expand All @@ -16,6 +16,7 @@

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

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;

Expand All @@ -29,7 +30,11 @@

import org.springframework.boot.actuate.metrics.AutoTimer;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpRequest;
import org.springframework.http.MediaType;
import org.springframework.http.client.ClientHttpRequestExecution;
import org.springframework.http.client.ClientHttpRequestInterceptor;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.test.web.client.MockRestServiceServer;
import org.springframework.test.web.client.match.MockRestRequestMatchers;
import org.springframework.test.web.client.response.MockRestResponseCreators;
Expand Down Expand Up @@ -107,4 +112,45 @@ void interceptRestTemplateWithUri() throws URISyntaxException {
this.mockServer.verify();
}

@Test
void interceptNestedRequest() {
this.mockServer.expect(MockRestRequestMatchers.requestTo("/test/123"))
.andExpect(MockRestRequestMatchers.method(HttpMethod.GET))
.andRespond(MockRestResponseCreators.withSuccess("OK", MediaType.APPLICATION_JSON));

RestTemplate nestedRestTemplate = new RestTemplate();
MockRestServiceServer nestedMockServer = MockRestServiceServer.createServer(nestedRestTemplate);
nestedMockServer.expect(MockRestRequestMatchers.requestTo("/nestedTest/124"))
.andExpect(MockRestRequestMatchers.method(HttpMethod.GET))
.andRespond(MockRestResponseCreators.withSuccess("OK", MediaType.APPLICATION_JSON));
this.customizer.customize(nestedRestTemplate);

TestInterceptor testInterceptor = new TestInterceptor(nestedRestTemplate);
this.restTemplate.getInterceptors().add(testInterceptor);

this.restTemplate.getForObject("/test/{id}", String.class, 123);
this.registry.get("http.client.requests").tags("uri", "/test/{id}").timer();
this.registry.get("http.client.requests").tags("uri", "/nestedTest/{nestedId}").timer();

this.mockServer.verify();
nestedMockServer.verify();
}

private static final class TestInterceptor implements ClientHttpRequestInterceptor {

private final RestTemplate restTemplate;

private TestInterceptor(RestTemplate restTemplate) {
this.restTemplate = restTemplate;
}

@Override
public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution)
throws IOException {
this.restTemplate.getForObject("/nestedTest/{nestedId}", String.class, 124);
return execution.execute(request, body);
}

}

}

0 comments on commit 1a8c321

Please sign in to comment.