Uses of Class
io.opencensus.trace.export.SpanData
-
-
Uses of SpanData in io.opencensus.contrib.zpages
Methods in io.opencensus.contrib.zpages with parameters of type SpanData Modifier and Type Method Description int
TracezZPageHandler.SpanDataComparator. compare(SpanData o1, SpanData o2)
private static void
TracezZPageHandler. emitSingleSpan(java.util.Formatter formatter, SpanData span)
Method parameters in io.opencensus.contrib.zpages with type arguments of type SpanData Modifier and Type Method Description private static void
TracezZPageHandler. emitSpans(java.io.PrintWriter out, java.util.Formatter formatter, java.util.Collection<SpanData> spans)
Emits the list of SampledRequets with a header. -
Uses of SpanData in io.opencensus.exporter.trace.util
Method parameters in io.opencensus.exporter.trace.util with type arguments of type SpanData Modifier and Type Method Description void
TimeLimitedHandler. export(java.util.Collection<SpanData> spanDataList)
abstract void
TimeLimitedHandler. timeLimitedExport(java.util.Collection<SpanData> spanDataList)
Exports a list of sampled (seeTraceOptions.isSampled()
)Span
s using the immutable representationSpanData
, within the givendeadline
of thisTimeLimitedHandler
. -
Uses of SpanData in io.opencensus.implcore.trace
Methods in io.opencensus.implcore.trace that return SpanData Modifier and Type Method Description SpanData
RecordEventsSpanImpl. toSpanData()
Returns an immutable representation of all the data from thisSpan
. -
Uses of SpanData in io.opencensus.implcore.trace.export
Fields in io.opencensus.implcore.trace.export with type parameters of type SpanData Modifier and Type Field Description private static java.util.Collection<SpanData>
SampledSpanStoreImpl.NoopSampledSpanStoreImpl. EMPTY_SPANDATA
Methods in io.opencensus.implcore.trace.export that return types with arguments of type SpanData Modifier and Type Method Description java.util.Collection<SpanData>
InProcessSampledSpanStoreImpl. getErrorSampledSpans(SampledSpanStore.ErrorFilter filter)
java.util.Collection<SpanData>
SampledSpanStoreImpl.NoopSampledSpanStoreImpl. getErrorSampledSpans(SampledSpanStore.ErrorFilter filter)
java.util.Collection<SpanData>
InProcessSampledSpanStoreImpl. getLatencySampledSpans(SampledSpanStore.LatencyFilter filter)
java.util.Collection<SpanData>
SampledSpanStoreImpl.NoopSampledSpanStoreImpl. getLatencySampledSpans(SampledSpanStore.LatencyFilter filter)
java.util.Collection<SpanData>
InProcessRunningSpanStore. getRunningSpans(RunningSpanStore.Filter filter)
private java.util.Collection<SpanData>
InProcessRunningSpanStore.InProcessRunningSpanStoreImpl. getRunningSpans(RunningSpanStore.Filter filter)
Method parameters in io.opencensus.implcore.trace.export with type arguments of type SpanData Modifier and Type Method Description private void
SpanExporterImpl.Worker. onBatchExport(java.util.List<SpanData> spanDataList)
-
Uses of SpanData in io.opencensus.testing.export
Fields in io.opencensus.testing.export with type parameters of type SpanData Modifier and Type Field Description private java.util.List<SpanData>
TestHandler. spanDataList
Methods in io.opencensus.testing.export that return types with arguments of type SpanData Modifier and Type Method Description java.util.List<SpanData>
TestHandler. waitForExport(int numberOfSpans)
Waits until we received numberOfSpans spans to export.Method parameters in io.opencensus.testing.export with type arguments of type SpanData Modifier and Type Method Description void
TestHandler. export(java.util.Collection<SpanData> spanDataList)
-
Uses of SpanData in io.opencensus.trace.export
Subclasses of SpanData in io.opencensus.trace.export Modifier and Type Class Description (package private) class
AutoValue_SpanData
Methods in io.opencensus.trace.export that return SpanData Modifier and Type Method Description static SpanData
SpanData. create(SpanContext context, SpanId parentSpanId, java.lang.Boolean hasRemoteParent, java.lang.String name, 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)
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
.Methods in io.opencensus.trace.export that return types with arguments of type SpanData Modifier and Type Method Description abstract java.util.Collection<SpanData>
SampledSpanStore. getErrorSampledSpans(SampledSpanStore.ErrorFilter filter)
java.util.Collection<SpanData>
SampledSpanStore.NoopSampledSpanStore. getErrorSampledSpans(SampledSpanStore.ErrorFilter filter)
abstract java.util.Collection<SpanData>
SampledSpanStore. getLatencySampledSpans(SampledSpanStore.LatencyFilter filter)
java.util.Collection<SpanData>
SampledSpanStore.NoopSampledSpanStore. getLatencySampledSpans(SampledSpanStore.LatencyFilter filter)
abstract java.util.Collection<SpanData>
RunningSpanStore. getRunningSpans(RunningSpanStore.Filter filter)
Returns a list of running spans that match theFilter
.java.util.Collection<SpanData>
RunningSpanStore.NoopRunningSpanStore. getRunningSpans(RunningSpanStore.Filter filter)
Method parameters in io.opencensus.trace.export with type arguments of type SpanData Modifier and Type Method Description abstract void
SpanExporter.Handler. export(java.util.Collection<SpanData> spanDataList)
Exports a list of sampled (seeTraceOptions.isSampled()
)Span
s using the immutable representationSpanData
.
-