-
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.
Co-authored-by: Alexander Wert <[email protected]> Co-authored-by: Joao Grassi <[email protected]>
- Loading branch information
1 parent
68457cb
commit d9c24b4
Showing
5 changed files
with
113 additions
and
64 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
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,32 @@ | ||
<!--- Hugo front matter used to generate the website version of this page: | ||
linkTitle: OS | ||
---> | ||
# OS | ||
|
||
## Operating System Attributes | ||
|
||
<!-- semconv registry.os(omit_requirement_level) --> | ||
| Attribute | Type | Description | Examples | | ||
|---|---|---|---| | ||
| `os.build_id` | string | Unique identifier for a particular build or compilation of the operating system. | `TQ3C.230805.001.B2`; `20E247`; `22621` | | ||
| `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` | | ||
| `os.name` | string | Human readable operating system name. | `iOS`; `Android`; `Ubuntu` | | ||
| `os.type` | string | The operating system type. | `windows` | | ||
| `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` | | ||
|
||
`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. | ||
|
||
| Value | Description | | ||
|---|---| | ||
| `windows` | Microsoft Windows | | ||
| `linux` | Linux | | ||
| `darwin` | Apple Darwin | | ||
| `freebsd` | FreeBSD | | ||
| `netbsd` | NetBSD | | ||
| `openbsd` | OpenBSD | | ||
| `dragonflybsd` | DragonFly BSD | | ||
| `hpux` | HP-UX (Hewlett Packard Unix) | | ||
| `aix` | AIX (Advanced Interactive eXecutive) | | ||
| `solaris` | SunOS, Oracle Solaris | | ||
| `z_os` | IBM z/OS | | ||
<!-- 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
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,69 @@ | ||
groups: | ||
- id: registry.os | ||
prefix: os | ||
type: attribute_group | ||
brief: > | ||
The operating system (OS) on which the process represented by this resource is running. | ||
note: > | ||
In case of virtualized environments, this is the operating system as it is observed by | ||
the process, i.e., the virtualized guest rather than the underlying host. | ||
attributes: | ||
- id: type | ||
type: | ||
allow_custom_values: true | ||
members: | ||
- id: windows | ||
value: 'windows' | ||
brief: "Microsoft Windows" | ||
- id: linux | ||
value: 'linux' | ||
brief: "Linux" | ||
- id: darwin | ||
value: 'darwin' | ||
brief: "Apple Darwin" | ||
- id: freebsd | ||
value: 'freebsd' | ||
brief: "FreeBSD" | ||
- id: netbsd | ||
value: 'netbsd' | ||
brief: "NetBSD" | ||
- id: openbsd | ||
value: 'openbsd' | ||
brief: "OpenBSD" | ||
- id: dragonflybsd | ||
value: 'dragonflybsd' | ||
brief: "DragonFly BSD" | ||
- id: hpux | ||
value: 'hpux' | ||
brief: "HP-UX (Hewlett Packard Unix)" | ||
- id: aix | ||
value: 'aix' | ||
brief: "AIX (Advanced Interactive eXecutive)" | ||
- id: solaris | ||
value: 'solaris' | ||
brief: "SunOS, Oracle Solaris" | ||
- id: z_os | ||
value: 'z_os' | ||
brief: "IBM z/OS" | ||
brief: > | ||
The operating system type. | ||
- id: description | ||
type: string | ||
brief: > | ||
Human readable (not intended to be parsed) OS version information, | ||
like e.g. reported by `ver` or `lsb_release -a` commands. | ||
examples: ['Microsoft Windows [Version 10.0.18363.778]', 'Ubuntu 18.04.1 LTS'] | ||
- id: name | ||
type: string | ||
brief: 'Human readable operating system name.' | ||
examples: ['iOS', 'Android', 'Ubuntu'] | ||
- id: version | ||
type: string | ||
brief: > | ||
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'] |
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