Class FeatureFlagIncubatingAttributes
java.lang.Object
io.opentelemetry.semconv.incubating.FeatureFlagIncubatingAttributes
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final io.opentelemetry.api.common.AttributeKey<String>The unique identifier for the flag evaluation context.static final io.opentelemetry.api.common.AttributeKey<String>A message explaining the nature of an error occurring during flag evaluation.static final io.opentelemetry.api.common.AttributeKey<String>The reason code which shows how a feature flag value was determined.static final io.opentelemetry.api.common.AttributeKey<String>The lookup key of the feature flag.static final io.opentelemetry.api.common.AttributeKey<String>Identifies the feature flag provider.static final io.opentelemetry.api.common.AttributeKey<String>The identifier of the flag set to which the feature flag belongs.static final io.opentelemetry.api.common.AttributeKey<String>A semantic identifier for an evaluated flag value.static final io.opentelemetry.api.common.AttributeKey<String>The version of the ruleset used during the evaluation. -
Method Summary
-
Field Details
-
FEATURE_FLAG_CONTEXT_ID
The unique identifier for the flag evaluation context. For example, the targeting key. -
FEATURE_FLAG_EVALUATION_ERROR_MESSAGE
public static final io.opentelemetry.api.common.AttributeKey<String> FEATURE_FLAG_EVALUATION_ERROR_MESSAGEA message explaining the nature of an error occurring during flag evaluation. -
FEATURE_FLAG_EVALUATION_REASON
The reason code which shows how a feature flag value was determined. -
FEATURE_FLAG_KEY
The lookup key of the feature flag. -
FEATURE_FLAG_PROVIDER_NAME
Identifies the feature flag provider. -
FEATURE_FLAG_SET_ID
The identifier of the flag set to which the feature flag belongs. -
FEATURE_FLAG_VARIANT
A semantic identifier for an evaluated flag value.Notes:
A semantic identifier, commonly referred to as a variant, provides a means for referring to a value without including the value itself. This can provide additional context for understanding the meaning behind a value. For example, the variant
redmaybe be used for the value#c05543. -
FEATURE_FLAG_VERSION
The version of the ruleset used during the evaluation. This may be any stable value which uniquely identifies the ruleset.
-