From 89aa013481395f0c6a168e2a4a7a3c78505b8dc4 Mon Sep 17 00:00:00 2001 From: Asaf Mesika Date: Tue, 13 Feb 2024 18:28:37 +0200 Subject: [PATCH] Fix typo in MetricFilter (#3874) --- specification/metrics/sdk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/metrics/sdk.md b/specification/metrics/sdk.md index 32971ceaca6..c5df338a822 100644 --- a/specification/metrics/sdk.md +++ b/specification/metrics/sdk.md @@ -1597,7 +1597,7 @@ The filtering is done at the [MetricProducer](#metricproducer) for performance r The `MetricFilter` allows filtering an entire metric stream - dropping or allowing all its attribute sets - by its `TestMetric` operation, which accepts the metric stream information (scope, name, kind and unit) and returns an enumeration: `Accept`, `Drop` -or `Allow_Partial`. If the latter returned, the `TestAttributes` operation +or `Accept_Partial`. If the latter returned, the `TestAttributes` operation is to be called per attribute set of that metric stream, returning an enumeration determining if the data point for that (metric stream, attributes) pair is to be allowed in the result of the [MetricProducer](#metricproducer) `Produce` operation.