| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * 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 <a href="https://wikipedia.org/wiki/Deployment_environment">deployment environment</a>
- (aka deployment tier). <p>
- @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: <ul>
- <li>@code service.name=frontend @endcode, @code deployment.environment.name=production
- @endcode</li> <li>@code service.name=frontend @endcode, @code deployment.environment.name=staging
- @endcode.</li>
- </ul>
- */
- 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
|