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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddb4cf898f5017382820e011c2ce74974af9c56fe50c0528ff57a6ec837b0ed3
|
4
|
+
data.tar.gz: 777ffbf412fc9589c975bc757b192b13fc977d20abff1428bfc91e9af61da3de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c9e061c61a16c770161c80732a18d54c113477148b6374b7b2d953092805d58729f43310a8cb67fbf48ce1b491306f5ffca21b26b7c25c443f7c931b75a7ca4
|
7
|
+
data.tar.gz: d758cf7538770a11f8fcfa2df20eecc742f465d00542a75ef16e52c870140c173eed9bb751fb423a350202e52ab62e752a1865a5c40aeeeee03cfa44fd618ac6
|
data/CHANGELOG.md
CHANGED
@@ -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
|
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
|
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
|
|
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.
|
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:
|
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.
|
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.
|
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:
|