Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 521 Bytes

File metadata and controls

18 lines (14 loc) · 521 Bytes

Jaeger Remote Sampler

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();