Adding os.build_id resource attribute and discussion why os.sdk.version isn't required (#293)
Co-authored-by: Joao Grassi <joao@joaograssi.com> Co-authored-by: Christian Neumüller <christian+github@neumueller.me> Co-authored-by: Joao Grassi <joao.grassi@dynatrace.com> Co-authored-by: Josh Suereth <joshuasuereth@google.com>
This commit is contained in:
parent
1d3d63b3d6
commit
984079ee2b
|
|
@ -114,6 +114,8 @@ release.
|
|||
([#296](https://github.com/open-telemetry/semantic-conventions/pull/296))
|
||||
- Introducing Android `android.os.api_level` resource attribute.
|
||||
([#328](https://github.com/open-telemetry/semantic-conventions/pull/328))
|
||||
- Added `os.build_id` resource attribute.
|
||||
([#293](https://github.com/open-telemetry/semantic-conventions/pull/293))
|
||||
|
||||
## v1.21.0 (2023-07-13)
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ In case of virtualized environments, this is the operating system as it is obser
|
|||
| `os.description` | string | Human readable (not intended to be parsed) OS version information, like e.g. reported by `ver` or `lsb_release -a` commands. | `Microsoft Windows [Version 10.0.18363.778]`; `Ubuntu 18.04.1 LTS` | Recommended |
|
||||
| `os.name` | string | Human readable operating system name. | `iOS`; `Android`; `Ubuntu` | Recommended |
|
||||
| `os.version` | string | The version string of the operating system as defined in [Version Attributes](/docs/resource/README.md#version-attributes). | `14.2.1`; `18.04.1` | Recommended |
|
||||
| `os.build_id` | string | Unique identifier for a particular build or compilation of the operating system. | `TQ3C.230805.001.B2`; `20E247`; `22621` | Recommended |
|
||||
|
||||
`os.type` has the following list of well-known values. If one of them applies, then the respective value MUST be used, otherwise a custom value MAY be used.
|
||||
|
||||
|
|
|
|||
|
|
@ -63,3 +63,7 @@ groups:
|
|||
The version string of the operating system as defined in
|
||||
[Version Attributes](/docs/resource/README.md#version-attributes).
|
||||
examples: ['14.2.1', '18.04.1']
|
||||
- id: build_id
|
||||
type: string
|
||||
brief: 'Unique identifier for a particular build or compilation of the operating system.'
|
||||
examples: ['TQ3C.230805.001.B2', '20E247', '22621']
|
||||
|
|
|
|||
Loading…
Reference in New Issue