Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add semantic conventions for jvm cpu metrics #2292

Merged
merged 18 commits into from
May 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,13 @@ consider, for example pthreads vs green thread implementations.

**Description:** Java Virtual Machine (JVM) metrics captured under `process.runtime.jvm.`

| Name | Description | Units | Instrument Type | Value Type | Attribute Key | Attribute Values |
|------|-------------|-------|-----------------|------------|---------------|------------------|
All JVM metric attributes are required unless otherwise indicated.
bogdandrutu marked this conversation as resolved.
Show resolved Hide resolved

| Name | Description | Unit | Unit ([UCUM](README.md#instrument-units)) | Instrument Type | Value Type | Attribute Key | Attribute Values |
|------------------------------------------------|----------------------------------------------------------|---------|-------------------------------------------|----------------------------|------------|---------------|-----------------------|
| process.runtime.jvm.cpu.time | The CPU time used by the process | seconds | `s` | Asynchronous Counter | Double | | |
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved
| process.runtime.jvm.cpu.usage | The "recent cpu usage" for the process | 1 | 1 | Gauge | Double | | |
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved
| process.runtime.jvm.common.pool.parallelism | Targeted parallelism level of the common pool | 1 | 1 | Gauge | Int32 | | |
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved
| process.runtime.jvm.system.cpu.usage | The "recent cpu usage" for the whole system | 1 | 1 | Gauge | Double | | |
| process.runtime.jvm.system.cpu.count | Number of processors available to use | 1 | 1 | Gauge | Int32 | | |
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved
| process.runtime.jvm.system.cpu.load.average.1m | Average CPU load of the whole system for the last minute | 1 | 1 | Gauge | Double | | |
reyang marked this conversation as resolved.
Show resolved Hide resolved
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved
jonatan-ivanov marked this conversation as resolved.
Show resolved Hide resolved