-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move otel.scope attributes to registry (#889)
- Loading branch information
1 parent
1f3c27e
commit a307d19
Showing
8 changed files
with
56 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ body: | |
- area:network | ||
- area:oci | ||
- area:os | ||
- area:otel | ||
- area:peer | ||
- area:process | ||
- area:rpc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,7 @@ body: | |
- area:network | ||
- area:oci | ||
- area:os | ||
- area:otel | ||
- area:peer | ||
- area:process | ||
- area:rpc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ body: | |
- area:network | ||
- area:oci | ||
- area:os | ||
- area:otel | ||
- area:peer | ||
- area:process | ||
- area:rpc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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` | ![Stable](https://img.shields.io/badge/-stable-lightgreen) | | ||
| `otel.scope.version` | string | The version of the instrumentation scope - (`InstrumentationScope.Version` in OTLP). | `1.0.0` | ![Stable](https://img.shields.io/badge/-stable-lightgreen) | | ||
<!-- endsemconv --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |