From eadde3e147a10bd53ee2b34299ec5ef4dcf0bcf9 Mon Sep 17 00:00:00 2001 From: Curtis Robert Date: Wed, 8 Jan 2025 09:00:53 -0800 Subject: [PATCH] [chore][processor/metricsgeneration] Remove redundant status information in README --- processor/metricsgenerationprocessor/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/processor/metricsgenerationprocessor/README.md b/processor/metricsgenerationprocessor/README.md index e029dd94c39d..92a475ad3b01 100644 --- a/processor/metricsgenerationprocessor/README.md +++ b/processor/metricsgenerationprocessor/README.md @@ -12,11 +12,9 @@ [contrib]: https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol-contrib -**Status: under development; Not recommended for production usage.** - ## Description -The metrics generation processor (`metricsgenerationprocessor`) can be used to create new metrics using existing metrics following a given rule. This processor currently supports the following two rule types for creating a new metric. +The metrics generation processor (`metricsgeneration`) can be used to create new metrics using existing metrics following a given rule. This processor currently supports the following two rule types for creating a new metric. 1. `calculate`: It can create a new metric from two existing metrics by applying one of the following arithmetic operations: add, subtract, multiply, divide, or percent. One use case is to calculate the `pod.memory.utilization` metric like the following equation- `pod.memory.utilization` = (`pod.memory.usage.bytes` / `node.memory.limit`)