Uses of Class
io.opencensus.trace.Span.Kind
-
Packages that use Span.Kind Package Description io.opencensus.implcore.trace io.opencensus.trace API for distributed tracing.io.opencensus.trace.export -
-
Uses of Span.Kind in io.opencensus.implcore.trace
Fields in io.opencensus.implcore.trace declared as Span.Kind Modifier and Type Field Description private Span.Kind
RecordEventsSpanImpl. kind
private Span.Kind
SpanBuilderImpl. kind
Methods in io.opencensus.implcore.trace that return Span.Kind Modifier and Type Method Description Span.Kind
RecordEventsSpanImpl. getKind()
Returns the kind of thisSpan
.Methods in io.opencensus.implcore.trace with parameters of type Span.Kind Modifier and Type Method Description SpanBuilderImpl
SpanBuilderImpl. setSpanKind(Span.Kind kind)
static RecordEventsSpanImpl
RecordEventsSpanImpl. startSpan(SpanContext context, java.lang.String name, Span.Kind kind, SpanId parentSpanId, java.lang.Boolean hasRemoteParent, TraceParams traceParams, RecordEventsSpanImpl.StartEndHandler startEndHandler, TimestampConverter timestampConverter, Clock clock)
Creates and starts a span with the given configuration.private Span
SpanBuilderImpl. startSpanInternal(SpanContext parentContext, java.lang.Boolean hasRemoteParent, java.lang.String name, Sampler sampler, java.util.List<Span> parentLinks, java.lang.Boolean recordEvents, Span.Kind kind, Span parentSpan)
Constructors in io.opencensus.implcore.trace with parameters of type Span.Kind Constructor Description RecordEventsSpanImpl(SpanContext context, java.lang.String name, Span.Kind kind, SpanId parentSpanId, java.lang.Boolean hasRemoteParent, TraceParams traceParams, RecordEventsSpanImpl.StartEndHandler startEndHandler, TimestampConverter timestampConverter, Clock clock)
-
Uses of Span.Kind in io.opencensus.trace
Methods in io.opencensus.trace that return Span.Kind Modifier and Type Method Description static Span.Kind
Span.Kind. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Span.Kind[]
Span.Kind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.opencensus.trace with parameters of type Span.Kind Modifier and Type Method Description SpanBuilder
SpanBuilder.NoopSpanBuilder. setSpanKind(Span.Kind spanKind)
SpanBuilder
SpanBuilder. setSpanKind(Span.Kind spanKind)
Sets theSpan.Kind
for the newly createdSpan
. -
Uses of Span.Kind in io.opencensus.trace.export
Fields in io.opencensus.trace.export declared as Span.Kind Modifier and Type Field Description private Span.Kind
AutoValue_SpanData. kind
Methods in io.opencensus.trace.export that return Span.Kind Modifier and Type Method Description Span.Kind
AutoValue_SpanData. getKind()
abstract Span.Kind
SpanData. getKind()
Returns the kind of thisSpan
.Methods in io.opencensus.trace.export with parameters of type Span.Kind Modifier and Type Method Description static SpanData
SpanData. create(SpanContext context, SpanId parentSpanId, java.lang.Boolean hasRemoteParent, java.lang.String name, Span.Kind kind, Timestamp startTimestamp, SpanData.Attributes attributes, SpanData.TimedEvents<Annotation> annotations, SpanData.TimedEvents<? extends BaseMessageEvent> messageOrNetworkEvents, SpanData.Links links, java.lang.Integer childSpanCount, Status status, Timestamp endTimestamp)
Returns a new immutableSpanData
.Constructors in io.opencensus.trace.export with parameters of type Span.Kind Constructor Description AutoValue_SpanData(SpanContext context, SpanId parentSpanId, java.lang.Boolean hasRemoteParent, java.lang.String name, Span.Kind kind, Timestamp startTimestamp, SpanData.Attributes attributes, SpanData.TimedEvents<Annotation> annotations, SpanData.TimedEvents<MessageEvent> messageEvents, SpanData.Links links, java.lang.Integer childSpanCount, Status status, Timestamp endTimestamp)
-