Propagation.B3 from brave instead.@Deprecated public enum BraveHttpHeaders extends java.lang.Enum<BraveHttpHeaders>
See https://github.com/openzipkin/b3-propagation for details
| Enum Constant | Description |
|---|---|
ParentSpanId |
Deprecated.
64-bit parent span ID lower-hex encoded into 16 characters (absent on root span)
|
Sampled |
Deprecated.
"1" means report this span to the tracing system, "0" means do not.
|
SpanId |
Deprecated.
64-bit span ID lower-hex encoded into 16 characters (required)
|
TraceId |
Deprecated.
128 or 64-bit trace ID lower-hex encoded into 32 or 16 characters (required)
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getName() |
Deprecated.
|
static BraveHttpHeaders |
valueOf(java.lang.String name) |
Deprecated.
Returns the enum constant of this type with the specified name.
|
static BraveHttpHeaders[] |
values() |
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BraveHttpHeaders TraceId
public static final BraveHttpHeaders SpanId
public static final BraveHttpHeaders ParentSpanId
public static final BraveHttpHeaders Sampled
public static BraveHttpHeaders[] values()
for (BraveHttpHeaders c : BraveHttpHeaders.values()) System.out.println(c);
public static BraveHttpHeaders valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()
Copyright © 2018 OpenZipkin. All rights reserved.