Package | Description |
---|---|
zipkin2 | |
zipkin2.v1 |
Modifier and Type | Method and Description |
---|---|
Endpoint |
Endpoint.Builder.build() |
Endpoint |
Span.localEndpoint()
The host that recorded this span, primarily for query by service name.
|
Endpoint |
Span.Builder.localEndpoint() |
Endpoint |
Span.remoteEndpoint()
When an RPC (or messaging) span, indicates the other side of the connection.
|
Modifier and Type | Method and Description |
---|---|
Span.Builder |
Span.Builder.localEndpoint(Endpoint localEndpoint) |
Span.Builder |
Span.Builder.remoteEndpoint(Endpoint remoteEndpoint) |
Modifier and Type | Method and Description |
---|---|
Endpoint |
V1BinaryAnnotation.endpoint()
Deprecated.
When
V1BinaryAnnotation.stringValue() is present, this is the same as the Span.localEndpoint()
Otherwise, it is the same as the Span.remoteEndpoint() . |
Endpoint |
V1Annotation.endpoint()
Deprecated.
The host that reported this annotation or null if unknown.
|
Modifier and Type | Method and Description |
---|---|
V1Span.Builder |
V1Span.Builder.addAnnotation(long timestamp,
String value,
Endpoint endpoint) |
V1Span.Builder |
V1Span.Builder.addBinaryAnnotation(String address,
Endpoint endpoint)
Creates an address annotation, which is the same as
Span.remoteEndpoint() |
V1Span.Builder |
V1Span.Builder.addBinaryAnnotation(String key,
String value,
Endpoint endpoint)
Creates a tag annotation, which is the same as
Span.tags() except duplicating the
endpoint. |
static V1Annotation |
V1Annotation.create(long timestamp,
String value,
Endpoint endpoint)
Deprecated.
|
static V1BinaryAnnotation |
V1BinaryAnnotation.createAddress(String address,
Endpoint endpoint)
Deprecated.
Creates an address annotation, which is the same as
Span.remoteEndpoint() |
static V1BinaryAnnotation |
V1BinaryAnnotation.createString(String key,
String value,
Endpoint endpoint)
Deprecated.
Creates a tag annotation, which is the same as
Span.tags() except duplicating the
endpoint. |
Copyright © 2015–2018 OpenZipkin. All rights reserved.