Skip to content

Commit

Permalink
Add process.signals_pending metric to semantic conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzej-stencel committed Nov 7, 2022
1 parent 7405243 commit 9c40d7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ release.
([#2874](https://github.com/open-telemetry/opentelemetry-specification/pull/2874))
- Add `process.paging.faults` metric to semantic conventions
([#2827](https://github.com/open-telemetry/opentelemetry-specification/pull/2827))
- Add `process.signals_pending` metric to semantic conventions
([#2846](https://github.com/open-telemetry/opentelemetry-specification/pull/2846))

### Compatibility

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Below is a table of Process metric instruments.
| `process.open_file_descriptors` | UpDownCounter | {count} | Number of file descriptors in use by the process. | |
| `process.context_switches` | Counter | {count} | Number of times the process has been context switched. | `type` SHOULD be one of: `involuntary`, `voluntary` |
| `process.paging.faults` | Counter | {faults} | Number of page faults the process has made. | `type`, if specified, SHOULD be one of: `major` (for major, or hard, page faults), `minor` (for minor, or soft, page faults). |
| `process.signals_pending` | UpDownCounter | {signals} | Number of pending POSIX signals for the process. | |

## Attributes

Expand Down

0 comments on commit 9c40d7c

Please sign in to comment.