SpanCustomizerpublic final class CurrentSpanCustomizer extends Object implements SpanCustomizer
Handles the case of there being no current span in scope.
| Modifier and Type | Method | Description |
|---|---|---|
SpanCustomizer |
annotate(String value) |
Associates an event that explains latency with the current system time.
|
static CurrentSpanCustomizer |
create(Tracing tracing) |
Creates a span customizer that will affect the current span in scope if present
|
SpanCustomizer |
name(String name) |
Sets the string name for the logical operation this span represents.
|
SpanCustomizer |
tag(String key,
String value) |
Tags give your span context for search, viewing and analysis.
|
public static CurrentSpanCustomizer create(Tracing tracing)
public SpanCustomizer name(String name)
name in interface SpanCustomizerpublic SpanCustomizer tag(String key, String value)
tag in interface SpanCustomizerkey - Name used to lookup spans, such as "your_app.version".value - String value, cannot be null.public SpanCustomizer annotate(String value)
annotate in interface SpanCustomizervalue - A short tag indicating the event, like "finagle.retry"Copyright © 2018 OpenZipkin. All rights reserved.