From 9c40d7c49c48aa31e0e81105b8e8f6f0db86ef59 Mon Sep 17 00:00:00 2001 From: Andrzej Stencel Date: Wed, 28 Sep 2022 13:27:31 +0200 Subject: [PATCH] Add `process.signals_pending` metric to semantic conventions --- CHANGELOG.md | 2 ++ specification/metrics/semantic_conventions/process-metrics.md | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c03efda5b83..26e10a7bc52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/specification/metrics/semantic_conventions/process-metrics.md b/specification/metrics/semantic_conventions/process-metrics.md index 0f44943eb01..cd697c92a69 100644 --- a/specification/metrics/semantic_conventions/process-metrics.md +++ b/specification/metrics/semantic_conventions/process-metrics.md @@ -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