opentelemetry-semantic_conventions 1.42.0 → 1.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/opentelemetry/semantic_conventions/version.rb +2 -2
- data/lib/opentelemetry/semconv/db/attributes.rb +23 -2
- data/lib/opentelemetry/semconv/incubating/azure/attributes.rb +5 -0
- data/lib/opentelemetry/semconv/incubating/cicd/attributes.rb +16 -16
- data/lib/opentelemetry/semconv/incubating/cicd/metrics.rb +5 -5
- data/lib/opentelemetry/semconv/incubating/cloud/attributes.rb +2 -0
- data/lib/opentelemetry/semconv/incubating/db/attributes.rb +23 -2
- data/lib/opentelemetry/semconv/incubating/disk/attributes.rb +1 -1
- data/lib/opentelemetry/semconv/incubating/k8s/attributes.rb +16 -16
- data/lib/opentelemetry/semconv/incubating/network/attributes.rb +2 -2
- data/lib/opentelemetry/semconv/incubating/oracle/attributes.rb +5 -5
- data/lib/opentelemetry/semconv/incubating/otel/metrics.rb +2 -0
- data/lib/opentelemetry/semconv/incubating/process/metrics.rb +12 -12
- data/lib/opentelemetry/semconv/incubating/system/attributes.rb +1 -1
- data/lib/opentelemetry/semconv/incubating/vcs/attributes.rb +16 -16
- data/lib/opentelemetry/semconv/incubating/vcs/metrics.rb +8 -8
- data/lib/opentelemetry/semconv/k8s/attributes.rb +16 -16
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c87619f45a9752cbd827768b88976c4636aba6abb0376efc480113bc4664ef73
|
|
4
|
+
data.tar.gz: b62d6d3745214c370d0316b2c95b0a0b35510dd53cb375d4ce15dcc07b7c5f6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a2e44a598a565d9cedac1a31cfec2d5d8c5e9ba6c43b22e8cf34c7c94472ac516cee0f5bd56a58bd94cc8529d5c41ab5d73d3da3b8c36d01c7ba5da73dee6a9
|
|
7
|
+
data.tar.gz: 9b537d4df0f26facf57fa5e411660287f6e81c8627fd9d046fd7a6edb66055d6c3f8ce512ed21d872c630b01c264949bfd50d336853483cebb349e3e095ace82
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Release History: opentelemetry-semantic_conventions
|
|
2
2
|
|
|
3
|
+
### v1.43.0 / 2026-07-08
|
|
4
|
+
|
|
5
|
+
* ADDED: Update dependency open-telemetry/semantic-conventions to v1.43.0 (#2218)
|
|
6
|
+
|
|
3
7
|
### v1.42.0 / 2026-07-07
|
|
4
8
|
|
|
5
9
|
* ADDED: Autoload namespaces so a single require exposes all constants (#2204)
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
module OpenTelemetry
|
|
8
8
|
module SemanticConventions
|
|
9
9
|
# Version of the OpenTelemetry Semantic Conventions from which this library was generated.
|
|
10
|
-
SPEC_VERSION = '1.
|
|
10
|
+
SPEC_VERSION = '1.43.0'
|
|
11
11
|
# Release version of this gem. May not match SPEC_VERSION until gem is released after a spec update.
|
|
12
|
-
VERSION = '1.
|
|
12
|
+
VERSION = '1.43.0'
|
|
13
13
|
end
|
|
14
14
|
end
|
|
@@ -47,9 +47,30 @@ module OpenTelemetry
|
|
|
47
47
|
# @note Stability Level: stable
|
|
48
48
|
DB_NAMESPACE = 'db.namespace'
|
|
49
49
|
|
|
50
|
-
# The number of
|
|
50
|
+
# The number of database operations included in a batch operation.
|
|
51
51
|
#
|
|
52
|
-
#
|
|
52
|
+
# Except for empty batch requests described below, a batch operation contains two
|
|
53
|
+
# or more database operations explicitly submitted as separate operations in a single
|
|
54
|
+
# client call, protocol message, or database command.
|
|
55
|
+
#
|
|
56
|
+
# Requests to batch APIs that contain only one operation SHOULD be modeled as single
|
|
57
|
+
# operations, not as batch operations.
|
|
58
|
+
#
|
|
59
|
+
# A database call is not a batch operation solely because one operation accepts
|
|
60
|
+
# multiple operands, such as keys, rows, documents, points, or other data elements,
|
|
61
|
+
# including Redis [`MGET`](https://redis.io/docs/latest/commands/mget/) with
|
|
62
|
+
# multiple keys.
|
|
63
|
+
#
|
|
64
|
+
# In batch APIs that execute the same parameterized operation with parameter sets,
|
|
65
|
+
# each parameter set represents one database operation for determining whether the
|
|
66
|
+
# request is a batch operation. Requests with only one parameter set SHOULD be modeled
|
|
67
|
+
# as single operations, not as batch operations.
|
|
68
|
+
#
|
|
69
|
+
# `db.operation.batch.size` SHOULD be set to the number of operations in the batch.
|
|
70
|
+
# It SHOULD NOT be set for non-batch operations.
|
|
71
|
+
#
|
|
72
|
+
# A request to execute a batch operation with no operations SHOULD also be treated
|
|
73
|
+
# as a batch operation, and `db.operation.batch.size` SHOULD be set to `0`.
|
|
53
74
|
#
|
|
54
75
|
# @note Stability Level: stable
|
|
55
76
|
DB_OPERATION_BATCH_SIZE = 'db.operation.batch.size'
|
|
@@ -61,6 +61,11 @@ module OpenTelemetry
|
|
|
61
61
|
# @note Stability Level: development
|
|
62
62
|
AZURE_COSMOSDB_RESPONSE_SUB_STATUS_CODE = 'azure.cosmosdb.response.sub_status_code'
|
|
63
63
|
|
|
64
|
+
# The name of the Azure [resource group](https://learn.microsoft.com/azure/azure-resource-manager/management/manage-resource-groups-portal) the resource belongs to.
|
|
65
|
+
#
|
|
66
|
+
# @note Stability Level: development
|
|
67
|
+
AZURE_RESOURCE_GROUP_NAME = 'azure.resource_group.name'
|
|
68
|
+
|
|
64
69
|
# [Azure Resource Provider Namespace](https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers) as recognized by the client.
|
|
65
70
|
#
|
|
66
71
|
# @note Stability Level: development
|
|
@@ -26,84 +26,84 @@ module OpenTelemetry
|
|
|
26
26
|
|
|
27
27
|
# The kind of action a pipeline run is performing.
|
|
28
28
|
#
|
|
29
|
-
# @note Stability Level:
|
|
29
|
+
# @note Stability Level: release_candidate
|
|
30
30
|
CICD_PIPELINE_ACTION_NAME = 'cicd.pipeline.action.name'
|
|
31
31
|
|
|
32
32
|
# The human readable name of the pipeline within a CI/CD system.
|
|
33
33
|
#
|
|
34
|
-
# @note Stability Level:
|
|
34
|
+
# @note Stability Level: release_candidate
|
|
35
35
|
CICD_PIPELINE_NAME = 'cicd.pipeline.name'
|
|
36
36
|
|
|
37
37
|
# The result of a pipeline run.
|
|
38
38
|
#
|
|
39
|
-
# @note Stability Level:
|
|
39
|
+
# @note Stability Level: release_candidate
|
|
40
40
|
CICD_PIPELINE_RESULT = 'cicd.pipeline.result'
|
|
41
41
|
|
|
42
42
|
# The unique identifier of a pipeline run within a CI/CD system.
|
|
43
43
|
#
|
|
44
|
-
# @note Stability Level:
|
|
44
|
+
# @note Stability Level: release_candidate
|
|
45
45
|
CICD_PIPELINE_RUN_ID = 'cicd.pipeline.run.id'
|
|
46
46
|
|
|
47
47
|
# The pipeline run goes through these states during its lifecycle.
|
|
48
48
|
#
|
|
49
|
-
# @note Stability Level:
|
|
49
|
+
# @note Stability Level: release_candidate
|
|
50
50
|
CICD_PIPELINE_RUN_STATE = 'cicd.pipeline.run.state'
|
|
51
51
|
|
|
52
52
|
# The [URL](https://wikipedia.org/wiki/URL) of the pipeline run, providing the complete address in order to locate and identify the pipeline run.
|
|
53
53
|
#
|
|
54
|
-
# @note Stability Level:
|
|
54
|
+
# @note Stability Level: release_candidate
|
|
55
55
|
CICD_PIPELINE_RUN_URL_FULL = 'cicd.pipeline.run.url.full'
|
|
56
56
|
|
|
57
57
|
# The human readable name of a task within a pipeline. Task here most closely aligns with a [computing process](https://wikipedia.org/wiki/Pipeline_(computing)) in a pipeline. Other terms for tasks include commands, steps, and procedures.
|
|
58
58
|
#
|
|
59
|
-
# @note Stability Level:
|
|
59
|
+
# @note Stability Level: release_candidate
|
|
60
60
|
CICD_PIPELINE_TASK_NAME = 'cicd.pipeline.task.name'
|
|
61
61
|
|
|
62
62
|
# The unique identifier of a task run within a pipeline.
|
|
63
63
|
#
|
|
64
64
|
# For a given pipeline run and task, the `cicd.pipeline.task.run.id` MUST be unique within that run. For the same task across different runs of the same pipeline, the `cicd.pipeline.task.run.id` MAY remain the same, enabling correlation of `cicd.pipeline.task.run.result` values across multiple pipeline runs.
|
|
65
65
|
#
|
|
66
|
-
# @note Stability Level:
|
|
66
|
+
# @note Stability Level: release_candidate
|
|
67
67
|
CICD_PIPELINE_TASK_RUN_ID = 'cicd.pipeline.task.run.id'
|
|
68
68
|
|
|
69
69
|
# The result of a task run.
|
|
70
70
|
#
|
|
71
|
-
# @note Stability Level:
|
|
71
|
+
# @note Stability Level: release_candidate
|
|
72
72
|
CICD_PIPELINE_TASK_RUN_RESULT = 'cicd.pipeline.task.run.result'
|
|
73
73
|
|
|
74
74
|
# The [URL](https://wikipedia.org/wiki/URL) of the pipeline task run, providing the complete address in order to locate and identify the pipeline task run.
|
|
75
75
|
#
|
|
76
|
-
# @note Stability Level:
|
|
76
|
+
# @note Stability Level: release_candidate
|
|
77
77
|
CICD_PIPELINE_TASK_RUN_URL_FULL = 'cicd.pipeline.task.run.url.full'
|
|
78
78
|
|
|
79
79
|
# The type of the task within a pipeline.
|
|
80
80
|
#
|
|
81
|
-
# @note Stability Level:
|
|
81
|
+
# @note Stability Level: release_candidate
|
|
82
82
|
CICD_PIPELINE_TASK_TYPE = 'cicd.pipeline.task.type'
|
|
83
83
|
|
|
84
84
|
# The name of a component of the CI/CD system.
|
|
85
85
|
#
|
|
86
|
-
# @note Stability Level:
|
|
86
|
+
# @note Stability Level: release_candidate
|
|
87
87
|
CICD_SYSTEM_COMPONENT = 'cicd.system.component'
|
|
88
88
|
|
|
89
89
|
# The unique identifier of a worker within a CI/CD system.
|
|
90
90
|
#
|
|
91
|
-
# @note Stability Level:
|
|
91
|
+
# @note Stability Level: release_candidate
|
|
92
92
|
CICD_WORKER_ID = 'cicd.worker.id'
|
|
93
93
|
|
|
94
94
|
# The name of a worker within a CI/CD system.
|
|
95
95
|
#
|
|
96
|
-
# @note Stability Level:
|
|
96
|
+
# @note Stability Level: release_candidate
|
|
97
97
|
CICD_WORKER_NAME = 'cicd.worker.name'
|
|
98
98
|
|
|
99
99
|
# The state of a CI/CD worker / agent.
|
|
100
100
|
#
|
|
101
|
-
# @note Stability Level:
|
|
101
|
+
# @note Stability Level: release_candidate
|
|
102
102
|
CICD_WORKER_STATE = 'cicd.worker.state'
|
|
103
103
|
|
|
104
104
|
# The [URL](https://wikipedia.org/wiki/URL) of the worker, providing the complete address in order to locate and identify the worker.
|
|
105
105
|
#
|
|
106
|
-
# @note Stability Level:
|
|
106
|
+
# @note Stability Level: release_candidate
|
|
107
107
|
CICD_WORKER_URL_FULL = 'cicd.worker.url.full'
|
|
108
108
|
|
|
109
109
|
# @!endgroup
|
|
@@ -26,12 +26,12 @@ module OpenTelemetry
|
|
|
26
26
|
|
|
27
27
|
# The number of pipeline runs currently active in the system by state.
|
|
28
28
|
#
|
|
29
|
-
# @note Stability Level:
|
|
29
|
+
# @note Stability Level: release_candidate
|
|
30
30
|
CICD_PIPELINE_RUN_ACTIVE = 'cicd.pipeline.run.active'
|
|
31
31
|
|
|
32
32
|
# Duration of a pipeline run grouped by pipeline, state and result.
|
|
33
33
|
#
|
|
34
|
-
# @note Stability Level:
|
|
34
|
+
# @note Stability Level: release_candidate
|
|
35
35
|
CICD_PIPELINE_RUN_DURATION = 'cicd.pipeline.run.duration'
|
|
36
36
|
|
|
37
37
|
# The number of errors encountered in pipeline runs (eg. compile, test failures).
|
|
@@ -39,19 +39,19 @@ module OpenTelemetry
|
|
|
39
39
|
# There might be errors in a pipeline run that are non fatal (eg. they are suppressed) or in a parallel stage multiple stages could have a fatal error.
|
|
40
40
|
# This means that this error count might not be the same as the count of metric `cicd.pipeline.run.duration` with run result `failure`.
|
|
41
41
|
#
|
|
42
|
-
# @note Stability Level:
|
|
42
|
+
# @note Stability Level: release_candidate
|
|
43
43
|
CICD_PIPELINE_RUN_ERRORS = 'cicd.pipeline.run.errors'
|
|
44
44
|
|
|
45
45
|
# The number of errors in a component of the CI/CD system (eg. controller, scheduler, agent).
|
|
46
46
|
#
|
|
47
47
|
# Errors in pipeline run execution are explicitly excluded. Ie a test failure is not counted in this metric.
|
|
48
48
|
#
|
|
49
|
-
# @note Stability Level:
|
|
49
|
+
# @note Stability Level: release_candidate
|
|
50
50
|
CICD_SYSTEM_ERRORS = 'cicd.system.errors'
|
|
51
51
|
|
|
52
52
|
# The number of workers on the CI/CD system by state.
|
|
53
53
|
#
|
|
54
|
-
# @note Stability Level:
|
|
54
|
+
# @note Stability Level: release_candidate
|
|
55
55
|
CICD_WORKER_COUNT = 'cicd.worker.count'
|
|
56
56
|
|
|
57
57
|
# @!endgroup
|
|
@@ -242,9 +242,30 @@ module OpenTelemetry
|
|
|
242
242
|
# @deprecated Replaced by `db.operation.name`.
|
|
243
243
|
DB_OPERATION = 'db.operation'
|
|
244
244
|
|
|
245
|
-
# The number of
|
|
245
|
+
# The number of database operations included in a batch operation.
|
|
246
246
|
#
|
|
247
|
-
#
|
|
247
|
+
# Except for empty batch requests described below, a batch operation contains two
|
|
248
|
+
# or more database operations explicitly submitted as separate operations in a single
|
|
249
|
+
# client call, protocol message, or database command.
|
|
250
|
+
#
|
|
251
|
+
# Requests to batch APIs that contain only one operation SHOULD be modeled as single
|
|
252
|
+
# operations, not as batch operations.
|
|
253
|
+
#
|
|
254
|
+
# A database call is not a batch operation solely because one operation accepts
|
|
255
|
+
# multiple operands, such as keys, rows, documents, points, or other data elements,
|
|
256
|
+
# including Redis [`MGET`](https://redis.io/docs/latest/commands/mget/) with
|
|
257
|
+
# multiple keys.
|
|
258
|
+
#
|
|
259
|
+
# In batch APIs that execute the same parameterized operation with parameter sets,
|
|
260
|
+
# each parameter set represents one database operation for determining whether the
|
|
261
|
+
# request is a batch operation. Requests with only one parameter set SHOULD be modeled
|
|
262
|
+
# as single operations, not as batch operations.
|
|
263
|
+
#
|
|
264
|
+
# `db.operation.batch.size` SHOULD be set to the number of operations in the batch.
|
|
265
|
+
# It SHOULD NOT be set for non-batch operations.
|
|
266
|
+
#
|
|
267
|
+
# A request to execute a batch operation with no operations SHOULD also be treated
|
|
268
|
+
# as a batch operation, and `db.operation.batch.size` SHOULD be set to `0`.
|
|
248
269
|
#
|
|
249
270
|
# @note Stability Level: stable
|
|
250
271
|
#
|
|
@@ -161,9 +161,9 @@ module OpenTelemetry
|
|
|
161
161
|
#
|
|
162
162
|
# Examples:
|
|
163
163
|
#
|
|
164
|
-
# -
|
|
164
|
+
# - An annotation `replicas` with value `1` SHOULD be recorded
|
|
165
165
|
# as the `k8s.daemonset.annotation.replicas` attribute with value `"1"`.
|
|
166
|
-
# -
|
|
166
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
167
167
|
# the `k8s.daemonset.annotation.data` attribute with value `""`.
|
|
168
168
|
#
|
|
169
169
|
# @note Stability Level: stable
|
|
@@ -183,7 +183,7 @@ module OpenTelemetry
|
|
|
183
183
|
#
|
|
184
184
|
# - A label `app` with value `guestbook` SHOULD be recorded
|
|
185
185
|
# as the `k8s.daemonset.label.app` attribute with value `"guestbook"`.
|
|
186
|
-
# - A label `
|
|
186
|
+
# - A label `injected` with empty string value SHOULD be recorded as
|
|
187
187
|
# the `k8s.daemonset.label.injected` attribute with value `""`.
|
|
188
188
|
#
|
|
189
189
|
# @note Stability Level: stable
|
|
@@ -215,9 +215,9 @@ module OpenTelemetry
|
|
|
215
215
|
#
|
|
216
216
|
# Examples:
|
|
217
217
|
#
|
|
218
|
-
# -
|
|
218
|
+
# - An annotation `replicas` with value `1` SHOULD be recorded
|
|
219
219
|
# as the `k8s.deployment.annotation.replicas` attribute with value `"1"`.
|
|
220
|
-
# -
|
|
220
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
221
221
|
# the `k8s.deployment.annotation.data` attribute with value `""`.
|
|
222
222
|
#
|
|
223
223
|
# @note Stability Level: stable
|
|
@@ -235,7 +235,7 @@ module OpenTelemetry
|
|
|
235
235
|
#
|
|
236
236
|
# Examples:
|
|
237
237
|
#
|
|
238
|
-
# - A label `
|
|
238
|
+
# - A label `app` with value `guestbook` SHOULD be recorded
|
|
239
239
|
# as the `k8s.deployment.label.app` attribute with value `"guestbook"`.
|
|
240
240
|
# - A label `injected` with empty string value SHOULD be recorded as
|
|
241
241
|
# the `k8s.deployment.label.injected` attribute with value `""`.
|
|
@@ -312,9 +312,9 @@ module OpenTelemetry
|
|
|
312
312
|
#
|
|
313
313
|
# Examples:
|
|
314
314
|
#
|
|
315
|
-
# -
|
|
315
|
+
# - An annotation `number` with value `1` SHOULD be recorded
|
|
316
316
|
# as the `k8s.job.annotation.number` attribute with value `"1"`.
|
|
317
|
-
# -
|
|
317
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
318
318
|
# the `k8s.job.annotation.data` attribute with value `""`.
|
|
319
319
|
#
|
|
320
320
|
# @note Stability Level: stable
|
|
@@ -334,7 +334,7 @@ module OpenTelemetry
|
|
|
334
334
|
#
|
|
335
335
|
# - A label `jobtype` with value `ci` SHOULD be recorded
|
|
336
336
|
# as the `k8s.job.label.jobtype` attribute with value `"ci"`.
|
|
337
|
-
# - A label `
|
|
337
|
+
# - A label `automated` with empty string value SHOULD be recorded as
|
|
338
338
|
# the `k8s.job.label.automated` attribute with value `""`.
|
|
339
339
|
#
|
|
340
340
|
# @note Stability Level: stable
|
|
@@ -366,9 +366,9 @@ module OpenTelemetry
|
|
|
366
366
|
#
|
|
367
367
|
# Examples:
|
|
368
368
|
#
|
|
369
|
-
# -
|
|
369
|
+
# - An annotation `ttl` with value `0` SHOULD be recorded
|
|
370
370
|
# as the `k8s.namespace.annotation.ttl` attribute with value `"0"`.
|
|
371
|
-
# -
|
|
371
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
372
372
|
# the `k8s.namespace.annotation.data` attribute with value `""`.
|
|
373
373
|
#
|
|
374
374
|
# @note Stability Level: stable
|
|
@@ -737,9 +737,9 @@ module OpenTelemetry
|
|
|
737
737
|
#
|
|
738
738
|
# Examples:
|
|
739
739
|
#
|
|
740
|
-
# -
|
|
740
|
+
# - An annotation `replicas` with value `0` SHOULD be recorded
|
|
741
741
|
# as the `k8s.replicaset.annotation.replicas` attribute with value `"0"`.
|
|
742
|
-
# -
|
|
742
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
743
743
|
# the `k8s.replicaset.annotation.data` attribute with value `""`.
|
|
744
744
|
#
|
|
745
745
|
# @note Stability Level: stable
|
|
@@ -950,9 +950,9 @@ module OpenTelemetry
|
|
|
950
950
|
#
|
|
951
951
|
# Examples:
|
|
952
952
|
#
|
|
953
|
-
# -
|
|
953
|
+
# - An annotation `replicas` with value `1` SHOULD be recorded
|
|
954
954
|
# as the `k8s.statefulset.annotation.replicas` attribute with value `"1"`.
|
|
955
|
-
# -
|
|
955
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
956
956
|
# the `k8s.statefulset.annotation.data` attribute with value `""`.
|
|
957
957
|
#
|
|
958
958
|
# @note Stability Level: stable
|
|
@@ -970,7 +970,7 @@ module OpenTelemetry
|
|
|
970
970
|
#
|
|
971
971
|
# Examples:
|
|
972
972
|
#
|
|
973
|
-
# - A label `
|
|
973
|
+
# - A label `app` with value `guestbook` SHOULD be recorded
|
|
974
974
|
# as the `k8s.statefulset.label.app` attribute with value `"guestbook"`.
|
|
975
975
|
# - A label `injected` with empty string value SHOULD be recorded as
|
|
976
976
|
# the `k8s.statefulset.label.injected` attribute with value `""`.
|
|
@@ -66,9 +66,9 @@ module OpenTelemetry
|
|
|
66
66
|
# @note Stability Level: development
|
|
67
67
|
NETWORK_INTERFACE_NAME = 'network.interface.name'
|
|
68
68
|
|
|
69
|
-
# The network
|
|
69
|
+
# The direction of traffic from the perspective of the observing host's physical or virtual network interface. It should not be used to represent the logical direction of a stateful connection or network flow.
|
|
70
70
|
#
|
|
71
|
-
# @note Stability Level:
|
|
71
|
+
# @note Stability Level: release_candidate
|
|
72
72
|
NETWORK_IO_DIRECTION = 'network.io.direction'
|
|
73
73
|
|
|
74
74
|
# Local address of the network connection - IP address or Unix domain socket name.
|
|
@@ -32,7 +32,7 @@ module OpenTelemetry
|
|
|
32
32
|
# distributed environment. Its value consists of one or more valid identifiers
|
|
33
33
|
# (alphanumeric ASCII characters) separated by periods.
|
|
34
34
|
#
|
|
35
|
-
# @note Stability Level:
|
|
35
|
+
# @note Stability Level: release_candidate
|
|
36
36
|
ORACLE_DB_DOMAIN = 'oracle.db.domain'
|
|
37
37
|
|
|
38
38
|
# The instance name associated with the connection in an Oracle Real Application Clusters environment.
|
|
@@ -41,14 +41,14 @@ module OpenTelemetry
|
|
|
41
41
|
# unique instance name to which the connection is currently bound. For non-RAC databases, this value
|
|
42
42
|
# defaults to the `oracle.db.name`.
|
|
43
43
|
#
|
|
44
|
-
# @note Stability Level:
|
|
44
|
+
# @note Stability Level: release_candidate
|
|
45
45
|
ORACLE_DB_INSTANCE_NAME = 'oracle.db.instance.name'
|
|
46
46
|
|
|
47
47
|
# The database name associated with the connection.
|
|
48
48
|
#
|
|
49
49
|
# This attribute SHOULD be set to the value of the parameter `DB_NAME` exposed in `v$parameter`.
|
|
50
50
|
#
|
|
51
|
-
# @note Stability Level:
|
|
51
|
+
# @note Stability Level: release_candidate
|
|
52
52
|
ORACLE_DB_NAME = 'oracle.db.name'
|
|
53
53
|
|
|
54
54
|
# The pluggable database (PDB) name associated with the connection.
|
|
@@ -58,7 +58,7 @@ module OpenTelemetry
|
|
|
58
58
|
# without issuing an additional query (such as `SELECT SYS_CONTEXT`), it is
|
|
59
59
|
# RECOMMENDED to fall back to the PDB name specified at connection establishment.
|
|
60
60
|
#
|
|
61
|
-
# @note Stability Level:
|
|
61
|
+
# @note Stability Level: release_candidate
|
|
62
62
|
ORACLE_DB_PDB = 'oracle.db.pdb'
|
|
63
63
|
|
|
64
64
|
# The service name currently associated with the database connection.
|
|
@@ -69,7 +69,7 @@ module OpenTelemetry
|
|
|
69
69
|
# query (such as `SELECT SYS_CONTEXT`), it is RECOMMENDED to fall back to the
|
|
70
70
|
# service name originally provided at connection establishment.
|
|
71
71
|
#
|
|
72
|
-
# @note Stability Level:
|
|
72
|
+
# @note Stability Level: release_candidate
|
|
73
73
|
ORACLE_DB_SERVICE = 'oracle.db.service'
|
|
74
74
|
|
|
75
75
|
# @!endgroup
|
|
@@ -190,6 +190,8 @@ module OpenTelemetry
|
|
|
190
190
|
|
|
191
191
|
# The number of created spans with `recording=true` for which the end operation has not been called yet.
|
|
192
192
|
#
|
|
193
|
+
# Non-recording spans are not counted, hence `otel.span.sampling_result` can only take values `RECORD_ONLY` and `RECORD_AND_SAMPLE`, not `DROP`.
|
|
194
|
+
#
|
|
193
195
|
# @note Stability Level: development
|
|
194
196
|
OTEL_SDK_SPAN_LIVE = 'otel.sdk.span.live'
|
|
195
197
|
|
|
@@ -26,37 +26,37 @@ module OpenTelemetry
|
|
|
26
26
|
|
|
27
27
|
# Number of times the process has been context switched.
|
|
28
28
|
#
|
|
29
|
-
# @note Stability Level:
|
|
29
|
+
# @note Stability Level: release_candidate
|
|
30
30
|
PROCESS_CONTEXT_SWITCHES = 'process.context_switches'
|
|
31
31
|
|
|
32
32
|
# Total CPU seconds broken down by different CPU modes.
|
|
33
33
|
#
|
|
34
|
-
# @note Stability Level:
|
|
34
|
+
# @note Stability Level: release_candidate
|
|
35
35
|
PROCESS_CPU_TIME = 'process.cpu.time'
|
|
36
36
|
|
|
37
37
|
# Difference in process.cpu.time since the last measurement, divided by the elapsed time and number of CPUs available to the process.
|
|
38
38
|
#
|
|
39
|
-
# @note Stability Level:
|
|
39
|
+
# @note Stability Level: release_candidate
|
|
40
40
|
PROCESS_CPU_UTILIZATION = 'process.cpu.utilization'
|
|
41
41
|
|
|
42
42
|
# Disk bytes transferred.
|
|
43
43
|
#
|
|
44
|
-
# @note Stability Level:
|
|
44
|
+
# @note Stability Level: release_candidate
|
|
45
45
|
PROCESS_DISK_IO = 'process.disk.io'
|
|
46
46
|
|
|
47
47
|
# The amount of physical memory in use.
|
|
48
48
|
#
|
|
49
|
-
# @note Stability Level:
|
|
49
|
+
# @note Stability Level: release_candidate
|
|
50
50
|
PROCESS_MEMORY_USAGE = 'process.memory.usage'
|
|
51
51
|
|
|
52
52
|
# The amount of committed virtual memory.
|
|
53
53
|
#
|
|
54
|
-
# @note Stability Level:
|
|
54
|
+
# @note Stability Level: release_candidate
|
|
55
55
|
PROCESS_MEMORY_VIRTUAL = 'process.memory.virtual'
|
|
56
56
|
|
|
57
57
|
# Network bytes transferred.
|
|
58
58
|
#
|
|
59
|
-
# @note Stability Level:
|
|
59
|
+
# @note Stability Level: release_candidate
|
|
60
60
|
PROCESS_NETWORK_IO = 'process.network.io'
|
|
61
61
|
|
|
62
62
|
# Deprecated, use `process.unix.file_descriptor.count` instead.
|
|
@@ -67,17 +67,17 @@ module OpenTelemetry
|
|
|
67
67
|
|
|
68
68
|
# Number of page faults the process has made.
|
|
69
69
|
#
|
|
70
|
-
# @note Stability Level:
|
|
70
|
+
# @note Stability Level: release_candidate
|
|
71
71
|
PROCESS_PAGING_FAULTS = 'process.paging.faults'
|
|
72
72
|
|
|
73
73
|
# Process threads count.
|
|
74
74
|
#
|
|
75
|
-
# @note Stability Level:
|
|
75
|
+
# @note Stability Level: release_candidate
|
|
76
76
|
PROCESS_THREAD_COUNT = 'process.thread.count'
|
|
77
77
|
|
|
78
78
|
# Number of unix file descriptors in use by the process.
|
|
79
79
|
#
|
|
80
|
-
# @note Stability Level:
|
|
80
|
+
# @note Stability Level: release_candidate
|
|
81
81
|
PROCESS_UNIX_FILE_DESCRIPTOR_COUNT = 'process.unix.file_descriptor.count'
|
|
82
82
|
|
|
83
83
|
# The time the process has been running.
|
|
@@ -85,12 +85,12 @@ module OpenTelemetry
|
|
|
85
85
|
# Instrumentations SHOULD use a gauge with type `double` and measure uptime in seconds as a floating point number with the highest precision available.
|
|
86
86
|
# The actual accuracy would depend on the instrumentation and operating system.
|
|
87
87
|
#
|
|
88
|
-
# @note Stability Level:
|
|
88
|
+
# @note Stability Level: release_candidate
|
|
89
89
|
PROCESS_UPTIME = 'process.uptime'
|
|
90
90
|
|
|
91
91
|
# Number of handles held by the process.
|
|
92
92
|
#
|
|
93
|
-
# @note Stability Level:
|
|
93
|
+
# @note Stability Level: release_candidate
|
|
94
94
|
PROCESS_WINDOWS_HANDLE_COUNT = 'process.windows.handle.count'
|
|
95
95
|
|
|
96
96
|
# @!endgroup
|
|
@@ -26,32 +26,32 @@ module OpenTelemetry
|
|
|
26
26
|
|
|
27
27
|
# The ID of the change (pull request/merge request/changelist) if applicable. This is usually a unique (within repository) identifier generated by the VCS system.
|
|
28
28
|
#
|
|
29
|
-
# @note Stability Level:
|
|
29
|
+
# @note Stability Level: release_candidate
|
|
30
30
|
VCS_CHANGE_ID = 'vcs.change.id'
|
|
31
31
|
|
|
32
32
|
# The state of the change (pull request/merge request/changelist).
|
|
33
33
|
#
|
|
34
|
-
# @note Stability Level:
|
|
34
|
+
# @note Stability Level: release_candidate
|
|
35
35
|
VCS_CHANGE_STATE = 'vcs.change.state'
|
|
36
36
|
|
|
37
37
|
# The human readable title of the change (pull request/merge request/changelist). This title is often a brief summary of the change and may get merged in to a ref as the commit summary.
|
|
38
38
|
#
|
|
39
|
-
# @note Stability Level:
|
|
39
|
+
# @note Stability Level: release_candidate
|
|
40
40
|
VCS_CHANGE_TITLE = 'vcs.change.title'
|
|
41
41
|
|
|
42
42
|
# The type of line change being measured on a branch or change.
|
|
43
43
|
#
|
|
44
|
-
# @note Stability Level:
|
|
44
|
+
# @note Stability Level: release_candidate
|
|
45
45
|
VCS_LINE_CHANGE_TYPE = 'vcs.line_change.type'
|
|
46
46
|
|
|
47
47
|
# The group owner within the version control system.
|
|
48
48
|
#
|
|
49
|
-
# @note Stability Level:
|
|
49
|
+
# @note Stability Level: release_candidate
|
|
50
50
|
VCS_OWNER_NAME = 'vcs.owner.name'
|
|
51
51
|
|
|
52
52
|
# The name of the version control system provider.
|
|
53
53
|
#
|
|
54
|
-
# @note Stability Level:
|
|
54
|
+
# @note Stability Level: release_candidate
|
|
55
55
|
VCS_PROVIDER_NAME = 'vcs.provider.name'
|
|
56
56
|
|
|
57
57
|
# The name of the [reference](https://git-scm.com/docs/gitglossary#def_ref) such as **branch** or **tag** in the repository.
|
|
@@ -60,7 +60,7 @@ module OpenTelemetry
|
|
|
60
60
|
# would be the base reference of type branch if you've created a new
|
|
61
61
|
# reference of type branch from it and created new commits.
|
|
62
62
|
#
|
|
63
|
-
# @note Stability Level:
|
|
63
|
+
# @note Stability Level: release_candidate
|
|
64
64
|
VCS_REF_BASE_NAME = 'vcs.ref.base.name'
|
|
65
65
|
|
|
66
66
|
# The revision, literally [revised version](https://www.merriam-webster.com/dictionary/revision), The revision most often refers to a commit object in Git, or a revision number in SVN.
|
|
@@ -79,7 +79,7 @@ module OpenTelemetry
|
|
|
79
79
|
# It is up to the implementer to decide which value to set as the
|
|
80
80
|
# revision based on the VCS system and situational context.
|
|
81
81
|
#
|
|
82
|
-
# @note Stability Level:
|
|
82
|
+
# @note Stability Level: release_candidate
|
|
83
83
|
VCS_REF_BASE_REVISION = 'vcs.ref.base.revision'
|
|
84
84
|
|
|
85
85
|
# The type of the [reference](https://git-scm.com/docs/gitglossary#def_ref) in the repository.
|
|
@@ -88,7 +88,7 @@ module OpenTelemetry
|
|
|
88
88
|
# would be the base reference of type branch if you've created a new
|
|
89
89
|
# reference of type branch from it and created new commits.
|
|
90
90
|
#
|
|
91
|
-
# @note Stability Level:
|
|
91
|
+
# @note Stability Level: release_candidate
|
|
92
92
|
VCS_REF_BASE_TYPE = 'vcs.ref.base.type'
|
|
93
93
|
|
|
94
94
|
# The name of the [reference](https://git-scm.com/docs/gitglossary#def_ref) such as **branch** or **tag** in the repository.
|
|
@@ -96,7 +96,7 @@ module OpenTelemetry
|
|
|
96
96
|
# `head` refers to where you are right now; the current reference at a
|
|
97
97
|
# given time.
|
|
98
98
|
#
|
|
99
|
-
# @note Stability Level:
|
|
99
|
+
# @note Stability Level: release_candidate
|
|
100
100
|
VCS_REF_HEAD_NAME = 'vcs.ref.head.name'
|
|
101
101
|
|
|
102
102
|
# The revision, literally [revised version](https://www.merriam-webster.com/dictionary/revision), The revision most often refers to a commit object in Git, or a revision number in SVN.
|
|
@@ -113,7 +113,7 @@ module OpenTelemetry
|
|
|
113
113
|
# It is up to the implementer to decide which value to set as the
|
|
114
114
|
# revision based on the VCS system and situational context.
|
|
115
115
|
#
|
|
116
|
-
# @note Stability Level:
|
|
116
|
+
# @note Stability Level: release_candidate
|
|
117
117
|
VCS_REF_HEAD_REVISION = 'vcs.ref.head.revision'
|
|
118
118
|
|
|
119
119
|
# The type of the [reference](https://git-scm.com/docs/gitglossary#def_ref) in the repository.
|
|
@@ -121,12 +121,12 @@ module OpenTelemetry
|
|
|
121
121
|
# `head` refers to where you are right now; the current reference at a
|
|
122
122
|
# given time.
|
|
123
123
|
#
|
|
124
|
-
# @note Stability Level:
|
|
124
|
+
# @note Stability Level: release_candidate
|
|
125
125
|
VCS_REF_HEAD_TYPE = 'vcs.ref.head.type'
|
|
126
126
|
|
|
127
127
|
# The type of the [reference](https://git-scm.com/docs/gitglossary#def_ref) in the repository.
|
|
128
128
|
#
|
|
129
|
-
# @note Stability Level:
|
|
129
|
+
# @note Stability Level: release_candidate
|
|
130
130
|
VCS_REF_TYPE = 'vcs.ref.type'
|
|
131
131
|
|
|
132
132
|
# Deprecated, use `vcs.change.id` instead.
|
|
@@ -147,7 +147,7 @@ module OpenTelemetry
|
|
|
147
147
|
# repository if collecting telemetry across multiple orgs or groups in
|
|
148
148
|
# the same backends.
|
|
149
149
|
#
|
|
150
|
-
# @note Stability Level:
|
|
150
|
+
# @note Stability Level: release_candidate
|
|
151
151
|
VCS_REPOSITORY_NAME = 'vcs.repository.name'
|
|
152
152
|
|
|
153
153
|
# Deprecated, use `vcs.ref.head.name` instead.
|
|
@@ -173,12 +173,12 @@ module OpenTelemetry
|
|
|
173
173
|
# In Git Version Control Systems, the canonical URL SHOULD NOT include
|
|
174
174
|
# the `.git` extension.
|
|
175
175
|
#
|
|
176
|
-
# @note Stability Level:
|
|
176
|
+
# @note Stability Level: release_candidate
|
|
177
177
|
VCS_REPOSITORY_URL_FULL = 'vcs.repository.url.full'
|
|
178
178
|
|
|
179
179
|
# The type of revision comparison.
|
|
180
180
|
#
|
|
181
|
-
# @note Stability Level:
|
|
181
|
+
# @note Stability Level: release_candidate
|
|
182
182
|
VCS_REVISION_DELTA_DIRECTION = 'vcs.revision_delta.direction'
|
|
183
183
|
|
|
184
184
|
# @!endgroup
|
|
@@ -26,12 +26,12 @@ module OpenTelemetry
|
|
|
26
26
|
|
|
27
27
|
# The number of changes (pull requests/merge requests/changelists) in a repository, categorized by their state (e.g. open or merged).
|
|
28
28
|
#
|
|
29
|
-
# @note Stability Level:
|
|
29
|
+
# @note Stability Level: release_candidate
|
|
30
30
|
VCS_CHANGE_COUNT = 'vcs.change.count'
|
|
31
31
|
|
|
32
32
|
# The time duration a change (pull request/merge request/changelist) has been in a given state.
|
|
33
33
|
#
|
|
34
|
-
# @note Stability Level:
|
|
34
|
+
# @note Stability Level: release_candidate
|
|
35
35
|
VCS_CHANGE_DURATION = 'vcs.change.duration'
|
|
36
36
|
|
|
37
37
|
# The amount of time since its creation it took a change (pull request/merge request/changelist) to get the first approval.
|
|
@@ -46,12 +46,12 @@ module OpenTelemetry
|
|
|
46
46
|
|
|
47
47
|
# The number of unique contributors to a repository.
|
|
48
48
|
#
|
|
49
|
-
# @note Stability Level:
|
|
49
|
+
# @note Stability Level: release_candidate
|
|
50
50
|
VCS_CONTRIBUTOR_COUNT = 'vcs.contributor.count'
|
|
51
51
|
|
|
52
52
|
# The number of refs of type branch or tag in a repository.
|
|
53
53
|
#
|
|
54
|
-
# @note Stability Level:
|
|
54
|
+
# @note Stability Level: release_candidate
|
|
55
55
|
VCS_REF_COUNT = 'vcs.ref.count'
|
|
56
56
|
|
|
57
57
|
# The number of lines added/removed in a ref (branch) relative to the ref from the `vcs.ref.base.name` attribute.
|
|
@@ -60,7 +60,7 @@ module OpenTelemetry
|
|
|
60
60
|
# instrumentation SHOULD report two measurements: 3 and 2 (both positive numbers).
|
|
61
61
|
# If number of lines added/removed should be calculated from the start of time, then `vcs.ref.base.name` SHOULD be set to an empty string.
|
|
62
62
|
#
|
|
63
|
-
# @note Stability Level:
|
|
63
|
+
# @note Stability Level: release_candidate
|
|
64
64
|
VCS_REF_LINES_DELTA = 'vcs.ref.lines_delta'
|
|
65
65
|
|
|
66
66
|
# The number of revisions (commits) a ref (branch) is ahead/behind the branch from the `vcs.ref.base.name` attribute.
|
|
@@ -68,17 +68,17 @@ module OpenTelemetry
|
|
|
68
68
|
# This metric should be reported for each `vcs.revision_delta.direction` value. For example if branch `a` is 3 commits behind and 2 commits ahead of `trunk`,
|
|
69
69
|
# instrumentation SHOULD report two measurements: 3 and 2 (both positive numbers) and `vcs.ref.base.name` is set to `trunk`.
|
|
70
70
|
#
|
|
71
|
-
# @note Stability Level:
|
|
71
|
+
# @note Stability Level: release_candidate
|
|
72
72
|
VCS_REF_REVISIONS_DELTA = 'vcs.ref.revisions_delta'
|
|
73
73
|
|
|
74
74
|
# Time a ref (branch) created from the default branch (trunk) has existed. The `ref.type` attribute will always be `branch`.
|
|
75
75
|
#
|
|
76
|
-
# @note Stability Level:
|
|
76
|
+
# @note Stability Level: release_candidate
|
|
77
77
|
VCS_REF_TIME = 'vcs.ref.time'
|
|
78
78
|
|
|
79
79
|
# The number of repositories in an organization.
|
|
80
80
|
#
|
|
81
|
-
# @note Stability Level:
|
|
81
|
+
# @note Stability Level: release_candidate
|
|
82
82
|
VCS_REPOSITORY_COUNT = 'vcs.repository.count'
|
|
83
83
|
|
|
84
84
|
# @!endgroup
|
|
@@ -122,9 +122,9 @@ module OpenTelemetry
|
|
|
122
122
|
#
|
|
123
123
|
# Examples:
|
|
124
124
|
#
|
|
125
|
-
# -
|
|
125
|
+
# - An annotation `replicas` with value `1` SHOULD be recorded
|
|
126
126
|
# as the `k8s.daemonset.annotation.replicas` attribute with value `"1"`.
|
|
127
|
-
# -
|
|
127
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
128
128
|
# the `k8s.daemonset.annotation.data` attribute with value `""`.
|
|
129
129
|
#
|
|
130
130
|
# @note Stability Level: stable
|
|
@@ -142,7 +142,7 @@ module OpenTelemetry
|
|
|
142
142
|
#
|
|
143
143
|
# - A label `app` with value `guestbook` SHOULD be recorded
|
|
144
144
|
# as the `k8s.daemonset.label.app` attribute with value `"guestbook"`.
|
|
145
|
-
# - A label `
|
|
145
|
+
# - A label `injected` with empty string value SHOULD be recorded as
|
|
146
146
|
# the `k8s.daemonset.label.injected` attribute with value `""`.
|
|
147
147
|
#
|
|
148
148
|
# @note Stability Level: stable
|
|
@@ -168,9 +168,9 @@ module OpenTelemetry
|
|
|
168
168
|
#
|
|
169
169
|
# Examples:
|
|
170
170
|
#
|
|
171
|
-
# -
|
|
171
|
+
# - An annotation `replicas` with value `1` SHOULD be recorded
|
|
172
172
|
# as the `k8s.deployment.annotation.replicas` attribute with value `"1"`.
|
|
173
|
-
# -
|
|
173
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
174
174
|
# the `k8s.deployment.annotation.data` attribute with value `""`.
|
|
175
175
|
#
|
|
176
176
|
# @note Stability Level: stable
|
|
@@ -186,7 +186,7 @@ module OpenTelemetry
|
|
|
186
186
|
#
|
|
187
187
|
# Examples:
|
|
188
188
|
#
|
|
189
|
-
# - A label `
|
|
189
|
+
# - A label `app` with value `guestbook` SHOULD be recorded
|
|
190
190
|
# as the `k8s.deployment.label.app` attribute with value `"guestbook"`.
|
|
191
191
|
# - A label `injected` with empty string value SHOULD be recorded as
|
|
192
192
|
# the `k8s.deployment.label.injected` attribute with value `""`.
|
|
@@ -214,9 +214,9 @@ module OpenTelemetry
|
|
|
214
214
|
#
|
|
215
215
|
# Examples:
|
|
216
216
|
#
|
|
217
|
-
# -
|
|
217
|
+
# - An annotation `number` with value `1` SHOULD be recorded
|
|
218
218
|
# as the `k8s.job.annotation.number` attribute with value `"1"`.
|
|
219
|
-
# -
|
|
219
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
220
220
|
# the `k8s.job.annotation.data` attribute with value `""`.
|
|
221
221
|
#
|
|
222
222
|
# @note Stability Level: stable
|
|
@@ -234,7 +234,7 @@ module OpenTelemetry
|
|
|
234
234
|
#
|
|
235
235
|
# - A label `jobtype` with value `ci` SHOULD be recorded
|
|
236
236
|
# as the `k8s.job.label.jobtype` attribute with value `"ci"`.
|
|
237
|
-
# - A label `
|
|
237
|
+
# - A label `automated` with empty string value SHOULD be recorded as
|
|
238
238
|
# the `k8s.job.label.automated` attribute with value `""`.
|
|
239
239
|
#
|
|
240
240
|
# @note Stability Level: stable
|
|
@@ -260,9 +260,9 @@ module OpenTelemetry
|
|
|
260
260
|
#
|
|
261
261
|
# Examples:
|
|
262
262
|
#
|
|
263
|
-
# -
|
|
263
|
+
# - An annotation `ttl` with value `0` SHOULD be recorded
|
|
264
264
|
# as the `k8s.namespace.annotation.ttl` attribute with value `"0"`.
|
|
265
|
-
# -
|
|
265
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
266
266
|
# the `k8s.namespace.annotation.data` attribute with value `""`.
|
|
267
267
|
#
|
|
268
268
|
# @note Stability Level: stable
|
|
@@ -429,9 +429,9 @@ module OpenTelemetry
|
|
|
429
429
|
#
|
|
430
430
|
# Examples:
|
|
431
431
|
#
|
|
432
|
-
# -
|
|
432
|
+
# - An annotation `replicas` with value `0` SHOULD be recorded
|
|
433
433
|
# as the `k8s.replicaset.annotation.replicas` attribute with value `"0"`.
|
|
434
|
-
# -
|
|
434
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
435
435
|
# the `k8s.replicaset.annotation.data` attribute with value `""`.
|
|
436
436
|
#
|
|
437
437
|
# @note Stability Level: stable
|
|
@@ -475,9 +475,9 @@ module OpenTelemetry
|
|
|
475
475
|
#
|
|
476
476
|
# Examples:
|
|
477
477
|
#
|
|
478
|
-
# -
|
|
478
|
+
# - An annotation `replicas` with value `1` SHOULD be recorded
|
|
479
479
|
# as the `k8s.statefulset.annotation.replicas` attribute with value `"1"`.
|
|
480
|
-
# -
|
|
480
|
+
# - An annotation `data` with empty string value SHOULD be recorded as
|
|
481
481
|
# the `k8s.statefulset.annotation.data` attribute with value `""`.
|
|
482
482
|
#
|
|
483
483
|
# @note Stability Level: stable
|
|
@@ -493,7 +493,7 @@ module OpenTelemetry
|
|
|
493
493
|
#
|
|
494
494
|
# Examples:
|
|
495
495
|
#
|
|
496
|
-
# - A label `
|
|
496
|
+
# - A label `app` with value `guestbook` SHOULD be recorded
|
|
497
497
|
# as the `k8s.statefulset.label.app` attribute with value `"guestbook"`.
|
|
498
498
|
# - A label `injected` with empty string value SHOULD be recorded as
|
|
499
499
|
# the `k8s.statefulset.label.injected` attribute with value `""`.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenTelemetry Authors
|
|
@@ -302,10 +302,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
|
|
302
302
|
licenses:
|
|
303
303
|
- Apache-2.0
|
|
304
304
|
metadata:
|
|
305
|
-
changelog_uri: https://rubydoc.info/gems/opentelemetry-semantic_conventions/1.
|
|
306
|
-
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/opentelemetry-semantic_conventions/v1.
|
|
305
|
+
changelog_uri: https://rubydoc.info/gems/opentelemetry-semantic_conventions/1.43.0/file/CHANGELOG.md
|
|
306
|
+
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/opentelemetry-semantic_conventions/v1.43.0/semantic_conventions
|
|
307
307
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
|
308
|
-
documentation_uri: https://rubydoc.info/gems/opentelemetry-semantic_conventions/1.
|
|
308
|
+
documentation_uri: https://rubydoc.info/gems/opentelemetry-semantic_conventions/1.43.0
|
|
309
309
|
rdoc_options: []
|
|
310
310
|
require_paths:
|
|
311
311
|
- lib
|