public enum TracingConfigurationCommandArg extends Enum<TracingConfigurationCommandArg> implements CommandArg
CommandList.TRACING_CONFIGURATION command arguments.| Enum Constant and Description |
|---|
INCLUDED_SCOPES
Set of
Scope that defines which sub-traces will be included in given trace. |
LABEL
Specify the label of a traced operation.
|
SAMPLING_RATE
Number between 0 and 1 that more or less reflects the probability of sampling specific trace. 0 and 1 have
special meaning here, 0 means never 1 means always.
|
SCOPE
Specify the
Scope of a trace's root span to which some specific tracing configuration will be applied. |
| Modifier and Type | Method and Description |
|---|---|
String |
argName()
{inheritDoc}
|
static Set<String> |
args() |
static TracingConfigurationCommandArg |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TracingConfigurationCommandArg[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TracingConfigurationCommandArg SCOPE
Scope of a trace's root span to which some specific tracing configuration will be applied.public static final TracingConfigurationCommandArg LABEL
public static final TracingConfigurationCommandArg SAMPLING_RATE
public static final TracingConfigurationCommandArg INCLUDED_SCOPES
Scope that defines which sub-traces will be included in given trace. In other words, if child's
span scope is equals to parent's scope or it belongs to the parent's span included scopes, then given child span
will be attached to the current trace, otherwise it'll be skipped. See Span.isChainable(Scope) for more details.public static TracingConfigurationCommandArg[] values()
for (TracingConfigurationCommandArg c : TracingConfigurationCommandArg.values()) System.out.println(c);
public static TracingConfigurationCommandArg valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String argName()
argName in interface CommandArg
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.13.0 Release Date : April 20 2022