[chore] Remove SHOULD for compiler name in `process.runtime.name`. (#1221)
Co-authored-by: Liudmila Molkova <limolkova@microsoft.com>
This commit is contained in:
parent
92bd20553f
commit
f17a4bf973
|
|
@ -33,7 +33,7 @@ An operating system process.
|
|||
| `process.real_user.id` | int | The real user ID (RUID) of the process. | `1000` |  |
|
||||
| `process.real_user.name` | string | The username of the real user of the process. | `operator` |  |
|
||||
| `process.runtime.description` | string | An additional description about the runtime of the process, for example a specific vendor customization of the runtime environment. | `Eclipse OpenJ9 Eclipse OpenJ9 VM openj9-0.21.0` |  |
|
||||
| `process.runtime.name` | string | The name of the runtime of this process. For compiled native binaries, this SHOULD be the name of the compiler. | `OpenJDK Runtime Environment` |  |
|
||||
| `process.runtime.name` | string | The name of the runtime of this process. | `OpenJDK Runtime Environment` |  |
|
||||
| `process.runtime.version` | string | The version of the runtime of this process, as returned by the runtime without modification. | `14.0.2` |  |
|
||||
| `process.saved_user.id` | int | The saved user ID (SUID) of the process. | `1002` |  |
|
||||
| `process.saved_user.name` | string | The username of the saved user. | `operator` |  |
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ On Windows and other systems where the native format of process commands is a si
|
|||
| Attribute | Type | Description | Examples | [Requirement Level](https://opentelemetry.io/docs/specs/semconv/general/attribute-requirement-level/) | Stability |
|
||||
|---|---|---|---|---|---|
|
||||
| [`process.runtime.description`](/docs/attributes-registry/process.md) | string | An additional description about the runtime of the process, for example a specific vendor customization of the runtime environment. | `Eclipse OpenJ9 Eclipse OpenJ9 VM openj9-0.21.0` | `Recommended` |  |
|
||||
| [`process.runtime.name`](/docs/attributes-registry/process.md) | string | The name of the runtime of this process. For compiled native binaries, this SHOULD be the name of the compiler. | `OpenJDK Runtime Environment` | `Recommended` |  |
|
||||
| [`process.runtime.name`](/docs/attributes-registry/process.md) | string | The name of the runtime of this process. | `OpenJDK Runtime Environment` | `Recommended` |  |
|
||||
| [`process.runtime.version`](/docs/attributes-registry/process.md) | string | The version of the runtime of this process, as returned by the runtime without modification. | `14.0.2` | `Recommended` |  |
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -130,8 +130,7 @@ groups:
|
|||
type: string
|
||||
stability: experimental
|
||||
brief: >
|
||||
The name of the runtime of this process. For compiled native binaries,
|
||||
this SHOULD be the name of the compiler.
|
||||
The name of the runtime of this process.
|
||||
examples: ['OpenJDK Runtime Environment']
|
||||
- id: runtime.version
|
||||
type: string
|
||||
|
|
|
|||
Loading…
Reference in New Issue