/* * 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 deployment { /** 'Deprecated, use @code deployment.environment.name @endcode instead.' @deprecated {"note": "Replaced by @code deployment.environment.name @endcode.", "reason": "renamed", "renamed_to": "deployment.environment.name"} */ OPENTELEMETRY_DEPRECATED static constexpr const char *kDeploymentEnvironment = "deployment.environment"; /** Name of the deployment environment (aka deployment tier).

@code deployment.environment.name @endcode does not affect the uniqueness constraints defined through the @code service.namespace @endcode, @code service.name @endcode and @code service.instance.id @endcode resource attributes. This implies that resources carrying the following attribute combinations MUST be considered to be identifying the same service:

*/ static constexpr const char *kDeploymentEnvironmentName = "deployment.environment.name"; /** The id of the deployment. */ static constexpr const char *kDeploymentId = "deployment.id"; /** The name of the deployment. */ static constexpr const char *kDeploymentName = "deployment.name"; /** The status of the deployment. */ static constexpr const char *kDeploymentStatus = "deployment.status"; namespace DeploymentStatusValues { /** failed */ static constexpr const char *kFailed = "failed"; /** succeeded */ static constexpr const char *kSucceeded = "succeeded"; } // namespace DeploymentStatusValues } // namespace deployment } // namespace semconv OPENTELEMETRY_END_NAMESPACE