/* * 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 gcp { /** The container within GCP where the AppHub application is defined. */ static constexpr const char *kGcpApphubApplicationContainer = "gcp.apphub.application.container"; /** The name of the application as configured in AppHub. */ static constexpr const char *kGcpApphubApplicationId = "gcp.apphub.application.id"; /** The GCP zone or region where the application is defined. */ static constexpr const char *kGcpApphubApplicationLocation = "gcp.apphub.application.location"; /** Criticality of a service indicates its importance to the business.
See AppHub type enum */ static constexpr const char *kGcpApphubServiceCriticalityType = "gcp.apphub.service.criticality_type"; /** Environment of a service is the stage of a software lifecycle.
See AppHub environment type */ static constexpr const char *kGcpApphubServiceEnvironmentType = "gcp.apphub.service.environment_type"; /** The name of the service as configured in AppHub. */ static constexpr const char *kGcpApphubServiceId = "gcp.apphub.service.id"; /** Criticality of a workload indicates its importance to the business.
See AppHub type enum */ static constexpr const char *kGcpApphubWorkloadCriticalityType = "gcp.apphub.workload.criticality_type"; /** Environment of a workload is the stage of a software lifecycle.
See AppHub environment type */ static constexpr const char *kGcpApphubWorkloadEnvironmentType = "gcp.apphub.workload.environment_type"; /** The name of the workload as configured in AppHub. */ static constexpr const char *kGcpApphubWorkloadId = "gcp.apphub.workload.id"; /** Identifies the Google Cloud service for which the official client library is intended.
Intended to be a stable identifier for Google Cloud client libraries that is uniform across implementation languages. The value should be derived from the canonical service domain for the service; for example, 'foo.googleapis.com' should result in a value of 'foo'. */ static constexpr const char *kGcpClientService = "gcp.client.service"; /** The name of the Cloud Run execution being run for the Job, as set by the @code CLOUD_RUN_EXECUTION @endcode environment variable. */ static constexpr const char *kGcpCloudRunJobExecution = "gcp.cloud_run.job.execution"; /** The index for a task within an execution as provided by the @code CLOUD_RUN_TASK_INDEX @endcode environment variable. */ static constexpr const char *kGcpCloudRunJobTaskIndex = "gcp.cloud_run.job.task_index"; /** The hostname of a GCE instance. This is the full value of the default or custom hostname. */ static constexpr const char *kGcpGceInstanceHostname = "gcp.gce.instance.hostname"; /** The instance name of a GCE instance. This is the value provided by @code host.name @endcode, the visible name of the instance in the Cloud Console UI, and the prefix for the default hostname of the instance as defined by the default internal DNS name. */ static constexpr const char *kGcpGceInstanceName = "gcp.gce.instance.name"; namespace GcpApphubServiceCriticalityTypeValues { /** Mission critical service. */ static constexpr const char *kMissionCritical = "MISSION_CRITICAL"; /** High impact. */ static constexpr const char *kHigh = "HIGH"; /** Medium impact. */ static constexpr const char *kMedium = "MEDIUM"; /** Low impact. */ static constexpr const char *kLow = "LOW"; } // namespace GcpApphubServiceCriticalityTypeValues namespace GcpApphubServiceEnvironmentTypeValues { /** Production environment. */ static constexpr const char *kProduction = "PRODUCTION"; /** Staging environment. */ static constexpr const char *kStaging = "STAGING"; /** Test environment. */ static constexpr const char *kTest = "TEST"; /** Development environment. */ static constexpr const char *kDevelopment = "DEVELOPMENT"; } // namespace GcpApphubServiceEnvironmentTypeValues namespace GcpApphubWorkloadCriticalityTypeValues { /** Mission critical service. */ static constexpr const char *kMissionCritical = "MISSION_CRITICAL"; /** High impact. */ static constexpr const char *kHigh = "HIGH"; /** Medium impact. */ static constexpr const char *kMedium = "MEDIUM"; /** Low impact. */ static constexpr const char *kLow = "LOW"; } // namespace GcpApphubWorkloadCriticalityTypeValues namespace GcpApphubWorkloadEnvironmentTypeValues { /** Production environment. */ static constexpr const char *kProduction = "PRODUCTION"; /** Staging environment. */ static constexpr const char *kStaging = "STAGING"; /** Test environment. */ static constexpr const char *kTest = "TEST"; /** Development environment. */ static constexpr const char *kDevelopment = "DEVELOPMENT"; } // namespace GcpApphubWorkloadEnvironmentTypeValues } // namespace gcp } // namespace semconv OPENTELEMETRY_END_NAMESPACE