Skip to content

Commit

Permalink
tags
Browse files Browse the repository at this point in the history
  • Loading branch information
janolaveide committed May 27, 2021
1 parent d8e9ce5 commit db32eb1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.io.IOException;
import java.net.URI;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import java.util.logging.LogManager;
Expand Down Expand Up @@ -121,7 +122,7 @@ private AbstractJerseyRestClient(URI proxy, Set<? extends ClientRequestFilter> f
.setRequestExecutor(MicrometerHttpRequestExecutor
.builder(Metrics.globalRegistry)
.exportTagsForRoute(true)
.tags(List.of(Tag.of(NAV_CONSUMER_TOKEN_HEADER, ALT_NAV_CALL_ID)))
.tags(List.of(Tag.of("client", getClass().getSimpleName())))
.build())
.setConnectionManager(connectionManager());
});
Expand Down

0 comments on commit db32eb1

Please sign in to comment.