Package brave.propagation
Class ExtraFieldPropagation.Factory
java.lang.Object
brave.propagation.Propagation.Factory
brave.propagation.ExtraFieldPropagation.Factory
- Enclosing class:
- ExtraFieldPropagation<K>
public static final class ExtraFieldPropagation.Factory extends Propagation.Factory
-
Method Summary
Modifier and Type Method Description <K> ExtraFieldPropagation<K>create(Propagation.KeyFactory<K> keyFactory)TraceContextdecorate(TraceContext context)Decorates the input such that it can propagate extra data, such as a timestamp or a carrier for extra fields.booleanrequires128BitTraceId()booleansupportsJoin()Does the propagation implementation support sharing client and server span IDs.
-
Method Details
-
supportsJoin
public boolean supportsJoin()Description copied from class:Propagation.FactoryDoes the propagation implementation support sharing client and server span IDs. For example, should an RPC server span share the same identifiers extracted from an incoming request? In usual B3 Propagation, the parent span ID is sent across the wire so that the client and server can share the same identifiers. Other propagation formats, like trace-context only propagate the calling trace and span ID, with an assumption that the receiver always starts a new child span. When join is supported, you can assume that whenthe parent span IDis null, you've been propagated a root span. When join is not supported, you must always fork a new child.- Overrides:
supportsJoinin classPropagation.Factory
-
requires128BitTraceId
public boolean requires128BitTraceId()- Overrides:
requires128BitTraceIdin classPropagation.Factory
-
create
- Specified by:
createin classPropagation.Factory
-
decorate
Description copied from class:Propagation.FactoryDecorates the input such that it can propagate extra data, such as a timestamp or a carrier for extra fields.Implementations are responsible for data scoping, if relevant. For example, if only global configuration is present, it could suffice to simply ensure that data is present. If data is span-scoped, an implementation might compare the context to its last span ID, copying on write or otherwise to ensure writes to one context don't affect another.
Implementations should be idempotent, returning the same instance instead of re-applying change.
- Overrides:
decoratein classPropagation.Factory- See Also:
TraceContext.extra()
-