Skip to content
This repository has been archived by the owner on Jan 3, 2019. It is now read-only.

v2.1.0

Compare
Choose a tag to compare
@hyleung hyleung released this 28 Oct 02:56
· 36 commits to master since this release

This release adds support for customizing span names (issues #26 and #39). A span name customizer function can be configured as follows:

config.spanNameProvider((request,pathBindingOpt) -> pathBindingOpt
          .map(pathBinding -> pathBinding.getDescription())
          .orElse(request.getPath())) )

Also included in this release is a fix for a bug that was resulting in "double execution" of the RequestSpec action on HTTP client requests (#46).