opentelemetry-semantic_conventions 1.6.1 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe730ba173abcec26741cbc2dd3ae179ef251df72399b5d7746383793a2ac804
4
- data.tar.gz: 0aece52a4cbe8ab2fdd0e13da75c487456f7d53c06245edbe58791b1b849e436
3
+ metadata.gz: ddb4cf898f5017382820e011c2ce74974af9c56fe50c0528ff57a6ec837b0ed3
4
+ data.tar.gz: 777ffbf412fc9589c975bc757b192b13fc977d20abff1428bfc91e9af61da3de
5
5
  SHA512:
6
- metadata.gz: 95dca43c5c025a67cb2752518532c5852d8660ac10d45171657be8c3a469287da8386aed49dce5d3a934ffee57975ea4af71af7d5cb9535f4876408baae24249
7
- data.tar.gz: '03907fa3d0d1d17b559bd3f8c86c20b3998610fb8cef8ff1c07614837777e453db796f6b21b49dc389655740c8d63b11ec80355536a59248bed3f1cf8b5c3544'
6
+ metadata.gz: 8c9e061c61a16c770161c80732a18d54c113477148b6374b7b2d953092805d58729f43310a8cb67fbf48ce1b491306f5ffca21b26b7c25c443f7c931b75a7ca4
7
+ data.tar.gz: d758cf7538770a11f8fcfa2df20eecc742f465d00542a75ef16e52c870140c173eed9bb751fb423a350202e52ab62e752a1865a5c40aeeeee03cfa44fd618ac6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release History: opentelemetry-semantic_conventions
2
2
 
3
+ ### v1.8.0 / 2022-01-06
4
+
5
+ * (No significant changes)
6
+
3
7
  ### v1.6.1 / 2021-09-29
4
8
 
5
9
  * (No significant changes)
@@ -13,7 +13,8 @@ module OpenTelemetry
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 OpenTelemetry
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 OpenTelemetry
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
178
+ K8S_CONTAINER_RESTART_COUNT = 'k8s.container.restart_count'
179
+
176
180
  # The UID of the ReplicaSet
177
181
  K8S_REPLICASET_UID = 'k8s.replicaset.uid'
178
182
 
@@ -6,6 +6,6 @@
6
6
 
7
7
  module OpenTelemetry
8
8
  module SemanticConventions
9
- VERSION = '1.6.1'
9
+ VERSION = '1.8.0'
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentelemetry-semantic_conventions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenTelemetry Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-30 00:00:00.000000000 Z
11
+ date: 2022-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opentelemetry-api
@@ -142,10 +142,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
142
142
  licenses:
143
143
  - Apache-2.0
144
144
  metadata:
145
- changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-semantic_conventions/v1.6.1/file.CHANGELOG.html
145
+ changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-semantic_conventions/v1.8.0/file.CHANGELOG.html
146
146
  source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/semantic_conventions
147
147
  bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
148
- documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-semantic_conventions/v1.6.1
148
+ documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-semantic_conventions/v1.8.0
149
149
  post_install_message:
150
150
  rdoc_options: []
151
151
  require_paths: