Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 791 Bytes

File metadata and controls

23 lines (17 loc) · 791 Bytes

Jaeger Remote Sampler

Javadocs

This module implements Jaeger remote sampler. The sampler configuration is received from collector's gRPC endpoint.

Example

The following example shows initialization and installation of the sampler:

JaegerRemoteSampler sampler = JaegerRemoteSampler.builder()
    .setServiceName("my-service")
    .build();
return SdkTracerProvider.builder()
    ...
    .setSampler(sampler)
    .build();