This module implements Jaeger remote sampler. The sampler configuration is received from collector's gRPC endpoint.
The following example shows initialization and installation of the sampler:
JaegerRemoteSampler sampler = JaegerRemoteSampler.builder()
.setServiceName("my-service")
.build();
return SdkTracerProvider.builder()
...
.setSampler(sampler)
.build();