| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- /*
- * Copyright The OpenTelemetry Authors
- * SPDX-License-Identifier: Apache-2.0
- */
- /*
- * DO NOT EDIT, this is an Auto-generated file from:
- * buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2
- */
- #pragma once
- #include "opentelemetry/common/macros.h"
- #include "opentelemetry/version.h"
- OPENTELEMETRY_BEGIN_NAMESPACE
- namespace semconv
- {
- namespace feature_flag
- {
- /**
- The unique identifier for the flag evaluation context. For example, the targeting key.
- */
- static constexpr const char *kFeatureFlagContextId = "feature_flag.context.id";
- /**
- Deprecated, use @code error.message @endcode instead.
- @deprecated
- {"note": "Replaced by @code error.message @endcode.", "reason": "renamed", "renamed_to":
- "error.message"}
- */
- OPENTELEMETRY_DEPRECATED static constexpr const char *kFeatureFlagEvaluationErrorMessage =
- "feature_flag.evaluation.error.message";
- /**
- Deprecated, use @code feature_flag.result.reason @endcode instead.
- @deprecated
- {"note": "Replaced by @code feature_flag.result.reason @endcode.", "reason": "renamed",
- "renamed_to": "feature_flag.result.reason"}
- */
- OPENTELEMETRY_DEPRECATED static constexpr const char *kFeatureFlagEvaluationReason =
- "feature_flag.evaluation.reason";
- /**
- The lookup key of the feature flag.
- */
- static constexpr const char *kFeatureFlagKey = "feature_flag.key";
- /**
- Identifies the feature flag provider.
- */
- static constexpr const char *kFeatureFlagProviderName = "feature_flag.provider.name";
- /**
- The reason code which shows how a feature flag value was determined.
- */
- static constexpr const char *kFeatureFlagResultReason = "feature_flag.result.reason";
- /**
- The evaluated value of the feature flag.
- <p>
- With some feature flag providers, feature flag results can be quite large or contain private or
- sensitive details. Because of this, @code feature_flag.result.variant @endcode is often the
- preferred attribute if it is available. <p> It may be desirable to redact or otherwise limit the
- size and scope of @code feature_flag.result.value @endcode if possible. Because the evaluated flag
- value is unstructured and may be any type, it is left to the instrumentation author to determine
- how best to achieve this.
- */
- static constexpr const char *kFeatureFlagResultValue = "feature_flag.result.value";
- /**
- A semantic identifier for an evaluated flag value.
- <p>
- 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 @code red @endcode maybe be used for the value @code #c05543 @endcode.
- */
- static constexpr const char *kFeatureFlagResultVariant = "feature_flag.result.variant";
- /**
- The identifier of the <a href="https://openfeature.dev/specification/glossary/#flag-set">flag
- set</a> to which the feature flag belongs.
- */
- static constexpr const char *kFeatureFlagSetId = "feature_flag.set.id";
- /**
- Deprecated, use @code feature_flag.result.variant @endcode instead.
- @deprecated
- {"note": "Replaced by @code feature_flag.result.variant @endcode.", "reason": "renamed",
- "renamed_to": "feature_flag.result.variant"}
- */
- OPENTELEMETRY_DEPRECATED static constexpr const char *kFeatureFlagVariant = "feature_flag.variant";
- /**
- The version of the ruleset used during the evaluation. This may be any stable value which uniquely
- identifies the ruleset.
- */
- static constexpr const char *kFeatureFlagVersion = "feature_flag.version";
- namespace FeatureFlagEvaluationReasonValues
- {
- /**
- The resolved value is static (no dynamic evaluation).
- */
- static constexpr const char *kStatic = "static";
- /**
- The resolved value fell back to a pre-configured value (no dynamic evaluation occurred or dynamic
- evaluation yielded no result).
- */
- static constexpr const char *kDefault = "default";
- /**
- The resolved value was the result of a dynamic evaluation, such as a rule or specific
- user-targeting.
- */
- static constexpr const char *kTargetingMatch = "targeting_match";
- /**
- The resolved value was the result of pseudorandom assignment.
- */
- static constexpr const char *kSplit = "split";
- /**
- The resolved value was retrieved from cache.
- */
- static constexpr const char *kCached = "cached";
- /**
- The resolved value was the result of the flag being disabled in the management system.
- */
- static constexpr const char *kDisabled = "disabled";
- /**
- The reason for the resolved value could not be determined.
- */
- static constexpr const char *kUnknown = "unknown";
- /**
- The resolved value is non-authoritative or possibly out of date
- */
- static constexpr const char *kStale = "stale";
- /**
- The resolved value was the result of an error.
- */
- static constexpr const char *kError = "error";
- } // namespace FeatureFlagEvaluationReasonValues
- namespace FeatureFlagResultReasonValues
- {
- /**
- The resolved value is static (no dynamic evaluation).
- */
- static constexpr const char *kStatic = "static";
- /**
- The resolved value fell back to a pre-configured value (no dynamic evaluation occurred or dynamic
- evaluation yielded no result).
- */
- static constexpr const char *kDefault = "default";
- /**
- The resolved value was the result of a dynamic evaluation, such as a rule or specific
- user-targeting.
- */
- static constexpr const char *kTargetingMatch = "targeting_match";
- /**
- The resolved value was the result of pseudorandom assignment.
- */
- static constexpr const char *kSplit = "split";
- /**
- The resolved value was retrieved from cache.
- */
- static constexpr const char *kCached = "cached";
- /**
- The resolved value was the result of the flag being disabled in the management system.
- */
- static constexpr const char *kDisabled = "disabled";
- /**
- The reason for the resolved value could not be determined.
- */
- static constexpr const char *kUnknown = "unknown";
- /**
- The resolved value is non-authoritative or possibly out of date
- */
- static constexpr const char *kStale = "stale";
- /**
- The resolved value was the result of an error.
- */
- static constexpr const char *kError = "error";
- } // namespace FeatureFlagResultReasonValues
- } // namespace feature_flag
- } // namespace semconv
- OPENTELEMETRY_END_NAMESPACE
|