Java Code Examples for brave.sampler.Sampler#ALWAYS_SAMPLE

The following examples show how to use brave.sampler.Sampler#ALWAYS_SAMPLE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RestTemplateTraceAspectIntegrationTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 2
Source File: TraceFilterIntegrationTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 3
Source File: SleuthSpanCreatorAspectTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 4
Source File: WebClientExceptionTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 5
Source File: WebClientTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler testSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 6
Source File: IgnoreAutoConfiguredSkipPatternsIntegrationTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 7
Source File: ManuallyCreatedLoadBalancerFeignClientTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
public Sampler defaultSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 8
Source File: TraceFilterWebIntegrationMultipleFiltersTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 9
Source File: SleuthSpanCreatorAspectFluxTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 10
Source File: ZipkinAutoConfigurationTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 11
Source File: Issue469.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 12
Source File: HelloSpringIntegration.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 13
Source File: SampleSleuthApplication.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
public Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 14
Source File: SleuthSpanCreatorAspectNegativeTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
public Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 15
Source File: Application.java    From brewery with Apache License 2.0 4 votes vote down vote up
@Bean Sampler defaultSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 16
Source File: Issue502Tests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
public Sampler defaultSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 17
Source File: WebClientDiscoveryExceptionTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 18
Source File: TraceWebFluxTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler sampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 19
Source File: TracingOnScheduledTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler alwaysSampler() {
	return Sampler.ALWAYS_SAMPLE;
}
 
Example 20
Source File: TraceStreamChannelInterceptorTests.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Bean
Sampler testSampler() {
	return Sampler.ALWAYS_SAMPLE;
}