| Package | Description |
|---|---|
| zipkin2 | |
| zipkin2.storage |
| Modifier and Type | Class and Description |
|---|---|
static class |
Call.Base<V> |
| Modifier and Type | Method and Description |
|---|---|
abstract Call<V> |
Call.clone()
Returns a copy of this object, so you can make an identical follow-up request.
|
static <V> Call<V> |
Call.create(V v)
Returns a completed call which has the supplied value.
|
static <T> Call<List<T>> |
Call.emptyList() |
<R> Call<R> |
Call.flatMap(Call.FlatMapper<V,R> flatMapper)
Maps the result of this call into another, as defined by the
flatMapper function. |
Call<V> |
Call.handleError(Call.ErrorHandler<V> errorHandler)
Returns a call which can attempt to resolve an exception.
|
<R> Call<R> |
Call.map(Call.Mapper<V,R> mapper)
Maps the result of this call into a different shape, as defined by the
mapper function. |
Call<V2> |
Call.FlatMapper.map(V1 input) |
| Modifier and Type | Method and Description |
|---|---|
Call<Void> |
InMemoryStorage.accept(List<Span> spans) |
Call<Void> |
SpanConsumer.accept(List<Span> spans) |
Call<List<DependencyLink>> |
InMemoryStorage.getDependencies(long endTs,
long lookback) |
Call<List<DependencyLink>> |
SpanStore.getDependencies(long endTs,
long lookback)
Returns dependency links derived from spans in an interval contained by (endTs - lookback) or
empty if none are found.
|
Call<List<String>> |
InMemoryStorage.getServiceNames() |
Call<List<String>> |
SpanStore.getServiceNames()
|
Call<List<String>> |
InMemoryStorage.getSpanNames(String service) |
Call<List<String>> |
SpanStore.getSpanNames(String serviceName)
Retrieves all
span names recorded by a service, sorted lexicographically. |
Call<List<Span>> |
InMemoryStorage.getTrace(String traceId) |
Call<List<Span>> |
SpanStore.getTrace(String traceId)
Retrieves spans that share a 128-bit trace id with no ordering expectation or empty if none are
found.
|
Call<List<List<Span>>> |
InMemoryStorage.getTraces(QueryRequest request) |
Call<List<List<Span>>> |
SpanStore.getTraces(QueryRequest request)
Retrieves spans grouped by trace ID from the storage system with no ordering expectation.
|
Copyright © 2015–2018 OpenZipkin. All rights reserved.