You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: semantic_conventions/lib/opentelemetry/semantic_conventions/resource.rb
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,8 @@ module Resource
13
13
# The cloud account ID the resource is assigned to
14
14
CLOUD_ACCOUNT_ID='cloud.account.id'
15
15
16
-
# The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations)
16
+
# The geographical region the resource is running
17
+
# @note Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), [Google Cloud regions](https://cloud.google.com/about/locations), or [Tencent Cloud regions](https://intl.cloud.tencent.com/document/product/213/6091)
17
18
CLOUD_REGION='cloud.region'
18
19
19
20
# Cloud regions often have multiple, isolated locations known as zones to increase availability. Availability zone represents the zone where the resource is running
@@ -60,7 +61,7 @@ module Resource
60
61
# @note See the [log stream ARN format documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html#CWL_ARN_Format). One log group can contain several log streams, so these ARNs necessarily identify both a log group and a log stream
61
62
AWS_LOG_STREAM_ARNS='aws.log.stream.arns'
62
63
63
-
# Container name
64
+
# Container name used by container runtime
64
65
CONTAINER_NAME='container.name'
65
66
66
67
# Container ID. Usually a UUID, as for example used to [identify Docker containers](https://docs.docker.com/engine/reference/run/#container-identification). The UUID might be abbreviated
@@ -170,9 +171,12 @@ module Resource
170
171
# The name of the Pod
171
172
K8S_POD_NAME='k8s.pod.name'
172
173
173
-
# The name of the Container in a Pod template
174
+
# The name of the Container from Pod specification, must be unique within a Pod. Container runtime usually uses different globally unique name (`container.name`)
174
175
K8S_CONTAINER_NAME='k8s.container.name'
175
176
177
+
# Number of times the container was restarted. This attribute can be used to identify a particular container (running or stopped) within a container spec
0 commit comments