Move otel.scope attributes to registry (#889)
This commit is contained in:
parent
1f3c27ea45
commit
a307d19c86
|
|
@ -50,6 +50,7 @@ body:
|
|||
- area:network
|
||||
- area:oci
|
||||
- area:os
|
||||
- area:otel
|
||||
- area:peer
|
||||
- area:process
|
||||
- area:rpc
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@ body:
|
|||
- area:network
|
||||
- area:oci
|
||||
- area:os
|
||||
- area:otel
|
||||
- area:peer
|
||||
- area:process
|
||||
- area:rpc
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ body:
|
|||
- area:network
|
||||
- area:oci
|
||||
- area:os
|
||||
- area:otel
|
||||
- area:peer
|
||||
- area:process
|
||||
- area:rpc
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ Currently, the following namespaces exist:
|
|||
* [K8s](k8s.md)
|
||||
* [Network](network.md)
|
||||
* [OCI](oci.md)
|
||||
* [OpenTelemetry](otel.md)
|
||||
* [OS](os.md)
|
||||
* [Peer](peer.md)
|
||||
* [Process](process.md)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
<!--- Hugo front matter used to generate the website version of this page:
|
||||
--->
|
||||
|
||||
# OpenTelemetry
|
||||
|
||||
## Scope Attributes
|
||||
|
||||
<!-- semconv registry.otel.scope(omit_requirement_level) -->
|
||||
| Attribute | Type | Description | Examples | Stability |
|
||||
|---|---|---|---|---|
|
||||
| `otel.scope.name` | string | The name of the instrumentation scope - (`InstrumentationScope.Name` in OTLP). | `io.opentelemetry.contrib.mongodb` |  |
|
||||
| `otel.scope.version` | string | The version of the instrumentation scope - (`InstrumentationScope.Version` in OTLP). | `1.0.0` |  |
|
||||
<!-- endsemconv -->
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
groups:
|
||||
- id: otel.library
|
||||
prefix: otel.library
|
||||
type: resource
|
||||
brief: >
|
||||
Span attributes used by non-OTLP exporters to represent OpenTelemetry Scope's concepts.
|
||||
attributes:
|
||||
- id: name
|
||||
type: string
|
||||
deprecated: use the `otel.scope.name` attribute.
|
||||
stability: experimental
|
||||
brief:
|
||||
examples: ['io.opentelemetry.contrib.mongodb']
|
||||
- id: version
|
||||
type: string
|
||||
deprecated: use the `otel.scope.version` attribute.
|
||||
stability: experimental
|
||||
brief:
|
||||
examples: ['1.0.0']
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
groups:
|
||||
- id: registry.otel.scope
|
||||
prefix: otel.scope
|
||||
type: resource
|
||||
brief: Attributes used by non-OTLP exporters to represent OpenTelemetry Scope's concepts.
|
||||
attributes:
|
||||
- id: name
|
||||
type: string
|
||||
brief: The name of the instrumentation scope - (`InstrumentationScope.Name` in OTLP).
|
||||
examples: ['io.opentelemetry.contrib.mongodb']
|
||||
stability: stable
|
||||
- id: version
|
||||
type: string
|
||||
brief: The version of the instrumentation scope - (`InstrumentationScope.Version` in OTLP).
|
||||
examples: ['1.0.0']
|
||||
stability: stable
|
||||
|
|
@ -1,34 +1,9 @@
|
|||
groups:
|
||||
- id: otel.scope
|
||||
prefix: otel.scope
|
||||
type: resource
|
||||
brief: Attributes used by non-OTLP exporters to represent OpenTelemetry Scope's concepts.
|
||||
attributes:
|
||||
- id: name
|
||||
type: string
|
||||
brief: The name of the instrumentation scope - (`InstrumentationScope.Name` in OTLP).
|
||||
examples: ['io.opentelemetry.contrib.mongodb']
|
||||
stability: stable
|
||||
- id: version
|
||||
type: string
|
||||
brief: The version of the instrumentation scope - (`InstrumentationScope.Version` in OTLP).
|
||||
examples: ['1.0.0']
|
||||
stability: stable
|
||||
- id: otel.library
|
||||
prefix: otel.library
|
||||
type: resource
|
||||
brief: >
|
||||
Span attributes used by non-OTLP exporters to represent OpenTelemetry Scope's concepts.
|
||||
attributes:
|
||||
- id: name
|
||||
type: string
|
||||
deprecated: use the `otel.scope.name` attribute.
|
||||
stability: experimental
|
||||
brief:
|
||||
examples: ['io.opentelemetry.contrib.mongodb']
|
||||
- id: version
|
||||
type: string
|
||||
deprecated: use the `otel.scope.version` attribute.
|
||||
stability: experimental
|
||||
brief:
|
||||
examples: ['1.0.0']
|
||||
- ref: otel.scope.name
|
||||
requirement_level: recommended
|
||||
- ref: otel.scope.version
|
||||
requirement_level: recommended
|
||||
|
|
|
|||
Loading…
Reference in New Issue