forked from open-telemetry/opentelemetry-java-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR modifies the Consistent Probability Samplers to make them conform to the proposed Composite Samplers at open-telemetry/oteps#250
- Loading branch information
Showing
19 changed files
with
1,084 additions
and
63 deletions.
There are no files selected for viewing
114 changes: 114 additions & 0 deletions
114
...mpling/src/main/java/io/opentelemetry/contrib/sampler/consistent56/ComposableSampler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.contrib.sampler.consistent56; | ||
|
||
import static io.opentelemetry.contrib.sampler.consistent56.ConsistentSamplingUtil.getInvalidRandomValue; | ||
import static io.opentelemetry.contrib.sampler.consistent56.ConsistentSamplingUtil.isValidThreshold; | ||
|
||
import io.opentelemetry.api.common.Attributes; | ||
import io.opentelemetry.api.trace.Span; | ||
import io.opentelemetry.api.trace.SpanContext; | ||
import io.opentelemetry.api.trace.SpanKind; | ||
import io.opentelemetry.api.trace.TraceState; | ||
import io.opentelemetry.context.Context; | ||
import io.opentelemetry.sdk.trace.data.LinkData; | ||
import io.opentelemetry.sdk.trace.samplers.SamplingDecision; | ||
import io.opentelemetry.sdk.trace.samplers.SamplingResult; | ||
import java.util.List; | ||
|
||
/** Abstract base class for composable consistent samplers. */ | ||
public abstract class ComposableSampler extends ConsistentSampler { | ||
|
||
@Override | ||
public final SamplingResult shouldSample( | ||
Context parentContext, | ||
String traceId, | ||
String name, | ||
SpanKind spanKind, | ||
Attributes attributes, | ||
List<LinkData> parentLinks) { | ||
Span parentSpan = Span.fromContext(parentContext); | ||
SpanContext parentSpanContext = parentSpan.getSpanContext(); | ||
|
||
TraceState parentTraceState = parentSpanContext.getTraceState(); | ||
String otelTraceStateString = parentTraceState.get(OtelTraceState.TRACE_STATE_KEY); | ||
OtelTraceState otelTraceState = OtelTraceState.parse(otelTraceStateString); | ||
|
||
SamplingIntent intent = | ||
getSamplingIntent(parentContext, name, spanKind, attributes, parentLinks); | ||
long threshold = intent.getThreshold(); | ||
|
||
// determine sampling decision | ||
boolean isSampled; | ||
if (isValidThreshold(threshold)) { | ||
long randomness = getRandomness(otelTraceState, traceId); | ||
isSampled = threshold <= randomness; | ||
} else { // DROP | ||
isSampled = false; | ||
} | ||
|
||
SamplingDecision samplingDecision; | ||
if (isSampled) { | ||
samplingDecision = SamplingDecision.RECORD_AND_SAMPLE; | ||
otelTraceState.setThreshold(threshold); | ||
} else { | ||
samplingDecision = SamplingDecision.DROP; | ||
otelTraceState.invalidateThreshold(); | ||
} | ||
|
||
String newOtTraceState = otelTraceState.serialize(); | ||
|
||
return new SamplingResult() { | ||
|
||
@Override | ||
public SamplingDecision getDecision() { | ||
return samplingDecision; | ||
} | ||
|
||
@Override | ||
public Attributes getAttributes() { | ||
return intent.getAttributes(); | ||
} | ||
|
||
@Override | ||
public TraceState getUpdatedTraceState(TraceState parentTraceState) { | ||
return intent.updateTraceState(parentTraceState).toBuilder() | ||
.put(OtelTraceState.TRACE_STATE_KEY, newOtTraceState) | ||
.build(); | ||
} | ||
}; | ||
} | ||
|
||
private static long getRandomness(OtelTraceState otelTraceState, String traceId) { | ||
if (otelTraceState.hasValidRandomValue()) { | ||
return otelTraceState.getRandomValue(); | ||
} else { | ||
return OtelTraceState.parseHex(traceId, 18, 14, getInvalidRandomValue()); | ||
} | ||
} | ||
|
||
@Override | ||
protected final long getThreshold(long parentThreshold, boolean isRoot) { | ||
// not used by Composable Samplers | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
/** | ||
* Returns the SamplingIntent that is used for the sampling decision. The SamplingIntent includes | ||
* the threshold value which will be used for the sampling decision. | ||
* | ||
* <p>NOTE: Keep in mind, that in any case the returned threshold value must not depend directly | ||
* or indirectly on the random value. In particular this means that the parent sampled flag must | ||
* not be used for the calculation of the threshold as the sampled flag depends itself on the | ||
* random value. | ||
*/ | ||
protected abstract SamplingIntent getSamplingIntent( | ||
Context parentContext, | ||
String name, | ||
SpanKind spanKind, | ||
Attributes attributes, | ||
List<LinkData> parentLinks); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
111 changes: 111 additions & 0 deletions
111
...sampling/src/main/java/io/opentelemetry/contrib/sampler/consistent56/ConsistentAnyOf.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.contrib.sampler.consistent56; | ||
|
||
import static io.opentelemetry.contrib.sampler.consistent56.ConsistentSamplingUtil.getInvalidThreshold; | ||
import static io.opentelemetry.contrib.sampler.consistent56.ConsistentSamplingUtil.isValidThreshold; | ||
|
||
import io.opentelemetry.api.common.Attributes; | ||
import io.opentelemetry.api.common.AttributesBuilder; | ||
import io.opentelemetry.api.trace.SpanKind; | ||
import io.opentelemetry.api.trace.TraceState; | ||
import io.opentelemetry.context.Context; | ||
import io.opentelemetry.sdk.trace.data.LinkData; | ||
import java.util.List; | ||
import javax.annotation.concurrent.Immutable; | ||
|
||
/** | ||
* A consistent sampler that queries all its delegate samplers for their sampling threshold, and | ||
* uses the minimum threshold value received. | ||
*/ | ||
@Immutable | ||
final class ConsistentAnyOf extends ComposableSampler { | ||
|
||
private final ComposableSampler[] delegates; | ||
|
||
private final String description; | ||
|
||
/** | ||
* Constructs a new consistent AnyOf sampler using the provided delegate samplers. | ||
* | ||
* @param delegates the delegate samplers | ||
*/ | ||
ConsistentAnyOf(ComposableSampler... delegates) { | ||
if (delegates.length == 0) { | ||
throw new IllegalArgumentException( | ||
"At least one delegate must be specified for ConsistentAnyOf"); | ||
} | ||
|
||
this.delegates = delegates; | ||
|
||
StringBuilder builder = new StringBuilder("ConsistentAnyOf{"); | ||
for (int i = 0; i < delegates.length; ++i) { | ||
builder.append(delegates[i].getDescription()); | ||
if (i < delegates.length - 1) { | ||
builder.append(","); | ||
} | ||
} | ||
builder.append("}"); | ||
this.description = builder.toString(); | ||
} | ||
|
||
@Override | ||
protected SamplingIntent getSamplingIntent( | ||
Context parentContext, | ||
String name, | ||
SpanKind spanKind, | ||
Attributes attributes, | ||
List<LinkData> parentLinks) { | ||
|
||
SamplingIntent[] intents = new SamplingIntent[delegates.length]; | ||
int k = 0; | ||
long minimumThreshold = getInvalidThreshold(); | ||
for (ComposableSampler delegate : delegates) { | ||
SamplingIntent delegateIntent = | ||
delegate.getSamplingIntent(parentContext, name, spanKind, attributes, parentLinks); | ||
long delegateThreshold = delegateIntent.getThreshold(); | ||
if (isValidThreshold(delegateThreshold)) { | ||
if (isValidThreshold(minimumThreshold)) { | ||
minimumThreshold = Math.min(delegateThreshold, minimumThreshold); | ||
} else { | ||
minimumThreshold = delegateThreshold; | ||
} | ||
} | ||
intents[k++] = delegateIntent; | ||
} | ||
|
||
long resultingThreshold = minimumThreshold; | ||
|
||
return new SamplingIntent() { | ||
@Override | ||
public long getThreshold() { | ||
return resultingThreshold; | ||
} | ||
|
||
@Override | ||
public Attributes getAttributes() { | ||
AttributesBuilder builder = Attributes.builder(); | ||
for (SamplingIntent intent : intents) { | ||
builder = builder.putAll(intent.getAttributes()); | ||
} | ||
return builder.build(); | ||
} | ||
|
||
@Override | ||
public TraceState updateTraceState(TraceState previousState) { | ||
for (SamplingIntent intent : intents) { | ||
previousState = intent.updateTraceState(previousState); | ||
} | ||
return previousState; | ||
} | ||
}; | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return description; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.