| Package | Description |
|---|---|
| zipkin | |
| zipkin.collector | |
| zipkin.storage |
| Modifier and Type | Method and Description |
|---|---|
Span |
Span.Builder.build() |
Span |
SpanDecoder.readSpan(byte[] span)
throws IllegalArgumentException if a span couldn't be decoded
|
| Modifier and Type | Method and Description |
|---|---|
List<Span> |
SpanDecoder.readSpans(byte[] span)
throws IllegalArgumentException if the spans couldn't be decoded
|
| Modifier and Type | Method and Description |
|---|---|
int |
Span.compareTo(Span that)
|
Span.Builder |
Span.Builder.merge(Span that) |
int |
Codec.sizeInBytes(Span value) |
byte[] |
Codec.writeSpan(Span value) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
Codec.writeSpans(List<Span> value) |
byte[] |
Codec.writeTraces(List<List<Span>> value) |
| Modifier and Type | Method and Description |
|---|---|
protected List<Span> |
Collector.decodeList(SpanDecoder decoder,
byte[] serialized) |
| Modifier and Type | Method and Description |
|---|---|
protected String |
Collector.idString(Span span) |
boolean |
CollectorSampler.isSampled(Span span)
Deprecated.
use
CollectorSampler.isSampled(long, Boolean) as that works with multiple span formats |
protected boolean |
Collector.isSampled(Span span) |
| Modifier and Type | Method and Description |
|---|---|
void |
Collector.accept(List<Span> spans,
Callback<Void> callback) |
protected void |
Collector.record(List<Span> sampled,
Callback<Void> callback) |
| Modifier and Type | Method and Description |
|---|---|
List<Span> |
InMemorySpanStore.getRawTrace(long traceId) |
List<Span> |
SpanStore.getRawTrace(long traceId)
Deprecated.
Please switch to
SpanStore.getRawTrace(long, long) |
List<Span> |
InMemorySpanStore.getRawTrace(long traceIdHigh,
long traceId) |
List<Span> |
SpanStore.getRawTrace(long traceIdHigh,
long traceIdLow)
Retrieves spans that share a 128-bit trace id, as returned from backend data store queries,
with no ordering expectation.
|
List<List<Span>> |
InMemorySpanStore.getRawTraces()
Used for testing.
|
List<Span> |
InMemorySpanStore.getTrace(long traceId) |
List<Span> |
SpanStore.getTrace(long traceId)
Deprecated.
Please switch to
SpanStore.getTrace(long, long) |
List<Span> |
InMemorySpanStore.getTrace(long traceIdHigh,
long traceIdLow) |
List<Span> |
SpanStore.getTrace(long traceIdHigh,
long traceIdLow)
Get the available trace information from the storage system.
|
List<List<Span>> |
InMemorySpanStore.getTraces(QueryRequest request) |
List<List<Span>> |
SpanStore.getTraces(QueryRequest request)
Get the available trace information from the storage system.
|
| Modifier and Type | Method and Description |
|---|---|
void |
StorageAdapters.SpanConsumer.accept(List<Span> spans)
|
void |
AsyncSpanConsumer.accept(List<Span> spans,
Callback<Void> callback)
Stores a list of spans
read from a transport. |
void |
AsyncSpanStore.getRawTrace(long traceId,
Callback<List<Span>> callback)
Deprecated.
Please switch to
AsyncSpanStore.getRawTrace(long, long, Callback) |
void |
AsyncSpanStore.getRawTrace(long traceIdHigh,
long traceIdLow,
Callback<List<Span>> callback)
Version of
SpanStore.getRawTrace(long, long) that accepts Callback. |
void |
AsyncSpanStore.getTrace(long id,
Callback<List<Span>> callback)
Deprecated.
Please switch to
AsyncSpanStore.getTrace(long, long, Callback) |
void |
AsyncSpanStore.getTrace(long traceIdHigh,
long traceIdLow,
Callback<List<Span>> callback)
Version of
SpanStore.getTrace(long, long) that accepts Callback. |
void |
AsyncSpanStore.getTraces(QueryRequest request,
Callback<List<List<Span>>> callback)
Version of
SpanStore.getTraces(zipkin.storage.QueryRequest) that accepts Callback. |
boolean |
QueryRequest.test(List<Span> spans)
Tests the supplied trace against the current request
|
Copyright © 2015–2018 OpenZipkin. All rights reserved.