| * Bump com.squareup.wire:wire-gradle-plugin from 4.5.2 to 4.5.3 Bumps [com.squareup.wire:wire-gradle-plugin](https://github.com/square/wire) from 4.5.2 to 4.5.3. - [Release notes](https://github.com/square/wire/releases) - [Changelog](https://github.com/square/wire/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/wire/compare/4.5.2...4.5.3) --- updated-dependencies: - dependency-name: com.squareup.wire:wire-gradle-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Remove newly redundant gradle config * jApiCmp * Bump to 4.5.4 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jack Berg <jberg@newrelic.com> | ||
|---|---|---|
| .. | ||
| src | ||
| README.md | ||
| build.gradle.kts | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	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();