use of io.jaegertracing.internal.samplers.http.PerOperationSamplingParameters in project jaeger-client-java by jaegertracing.
the class PerOperationSamplerTest method testUpdate.
@Test
public void testUpdate() {
GuaranteedThroughputSampler guaranteedThroughputSampler = mock(GuaranteedThroughputSampler.class);
operationToSamplers.put(OPERATION, guaranteedThroughputSampler);
PerOperationSamplingParameters perOperationSamplingParameters = new PerOperationSamplingParameters(OPERATION, new ProbabilisticSamplingStrategy(SAMPLING_RATE));
List<PerOperationSamplingParameters> parametersList = new ArrayList<>();
parametersList.add(perOperationSamplingParameters);
OperationSamplingParameters parameters = new OperationSamplingParameters(DEFAULT_SAMPLING_PROBABILITY, DEFAULT_LOWER_BOUND_TRACES_PER_SECOND, parametersList);
assertTrue(undertest.update(parameters));
verify(guaranteedThroughputSampler).update(SAMPLING_RATE, DEFAULT_LOWER_BOUND_TRACES_PER_SECOND);
verifyNoMoreInteractions(guaranteedThroughputSampler);
}
use of io.jaegertracing.internal.samplers.http.PerOperationSamplingParameters in project jaeger-client-java by jaegertracing.
the class PerOperationSamplerTest method testNoopUpdate.
@Test
public void testNoopUpdate() {
ProbabilisticSampler defaultProbabilisticSampler = new ProbabilisticSampler(DEFAULT_SAMPLING_PROBABILITY);
double operationSamplingRate = 0.23;
operationToSamplers.put(OPERATION, new GuaranteedThroughputSampler(operationSamplingRate, DEFAULT_LOWER_BOUND_TRACES_PER_SECOND));
undertest = new PerOperationSampler(MAX_OPERATIONS, operationToSamplers, defaultProbabilisticSampler, DEFAULT_LOWER_BOUND_TRACES_PER_SECOND);
List<PerOperationSamplingParameters> parametersList = new ArrayList<>();
parametersList.add(new PerOperationSamplingParameters(OPERATION, new ProbabilisticSamplingStrategy(operationSamplingRate)));
OperationSamplingParameters parameters = new OperationSamplingParameters(DEFAULT_SAMPLING_PROBABILITY, DEFAULT_LOWER_BOUND_TRACES_PER_SECOND, parametersList);
assertFalse(undertest.update(parameters));
assertEquals(operationToSamplers, undertest.getOperationNameToSampler());
assertEquals(DEFAULT_LOWER_BOUND_TRACES_PER_SECOND, undertest.getLowerBound(), DELTA);
assertEquals(DEFAULT_SAMPLING_PROBABILITY, undertest.getDefaultSampler().getSamplingRate(), DELTA);
}
use of io.jaegertracing.internal.samplers.http.PerOperationSamplingParameters in project jaeger-client-java by jaegertracing.
the class RemoteControlledSamplerTest method testUpdateToPerOperationSamplerReplacesProbabilisticSampler.
@Test
public void testUpdateToPerOperationSamplerReplacesProbabilisticSampler() throws Exception {
List<PerOperationSamplingParameters> operationToSampler = new ArrayList<>();
operationToSampler.add(new PerOperationSamplingParameters("operation", new ProbabilisticSamplingStrategy(0.1)));
OperationSamplingParameters parameters = new OperationSamplingParameters(0.11, 0.22, operationToSampler);
SamplingStrategyResponse response = new SamplingStrategyResponse(null, null, parameters);
when(samplingManager.getSamplingStrategy(SERVICE_NAME)).thenReturn(response);
undertest.updateSampler();
PerOperationSampler perOperationSampler = new PerOperationSampler(2000, parameters);
Sampler actualSampler = undertest.getSampler();
assertEquals(perOperationSampler, actualSampler);
}
Aggregations