You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[processor/transform] Add Conversion Function to OTTL for Exponential Histo --> Histogram (open-telemetry#33824)
## Description
This PR adds a custom metric function to the transformprocessor to
convert exponential histograms to explicit histograms.
Link to tracking issue: Resolvesopen-telemetry#33827
**Function Name**
```
convert_exponential_histogram_to_explicit_histogram
```
**Arguments:**
- `distribution` (_upper, midpoint, uniform, random_)
- `ExplicitBoundaries: []float64`
**Usage example:**
```yaml
processors:
transform:
error_mode: propagate
metric_statements:
- context: metric
statements:
- convert_exponential_histogram_to_explicit_histogram("random", [10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0])
```
**Converts:**
```
Resource SchemaURL:
ScopeMetrics #0
ScopeMetrics SchemaURL:
InstrumentationScope
Metric #0
Descriptor:
-> Name: response_time
-> Description:
-> Unit:
-> DataType: ExponentialHistogram
-> AggregationTemporality: Delta
ExponentialHistogramDataPoints #0
Data point attributes:
-> metric_type: Str(timing)
StartTimestamp: 1970-01-01 00:00:00 +0000 UTC
Timestamp: 2024-07-31 09:35:25.212037 +0000 UTC
Count: 44
Sum: 999.000000
Min: 40.000000
Max: 245.000000
Bucket (32.000000, 64.000000], Count: 10
Bucket (64.000000, 128.000000], Count: 22
Bucket (128.000000, 256.000000], Count: 12
{"kind": "exporter", "data_type": "metrics", "name": "debug"}
```
**To:**
```
Resource SchemaURL:
ScopeMetrics #0
ScopeMetrics SchemaURL:
InstrumentationScope
Metric #0
Descriptor:
-> Name: response_time
-> Description:
-> Unit:
-> DataType: Histogram
-> AggregationTemporality: Delta
HistogramDataPoints #0
Data point attributes:
-> metric_type: Str(timing)
StartTimestamp: 1970-01-01 00:00:00 +0000 UTC
Timestamp: 2024-07-30 21:37:07.830902 +0000 UTC
Count: 44
Sum: 999.000000
Min: 40.000000
Max: 245.000000
ExplicitBounds #0: 10.000000
ExplicitBounds #1: 20.000000
ExplicitBounds #2: 30.000000
ExplicitBounds #3: 40.000000
ExplicitBounds #4: 50.000000
ExplicitBounds #5: 60.000000
ExplicitBounds #6: 70.000000
ExplicitBounds #7: 80.000000
ExplicitBounds #8: 90.000000
ExplicitBounds #9: 100.000000
Buckets #0, Count: 0
Buckets #1, Count: 0
Buckets #2, Count: 0
Buckets #3, Count: 2
Buckets #4, Count: 5
Buckets #5, Count: 0
Buckets #6, Count: 3
Buckets #7, Count: 7
Buckets #8, Count: 2
Buckets #9, Count: 4
Buckets #10, Count: 21
{"kind": "exporter", "data_type": "metrics", "name": "debug"}
```
### Testing
- Several unit tests have been created. We have also tested by ingesting
and converting exponential histograms from the `statsdreceiver` as well
as directly via the `otlpreceiver` over grpc over several hours with a
large amount of data.
- We have clients that have been running this solution in production for
a number of weeks.
### Readme description:
### convert_exponential_hist_to_explicit_hist
`convert_exponential_hist_to_explicit_hist([ExplicitBounds])`
the `convert_exponential_hist_to_explicit_hist` function converts an
ExponentialHistogram to an Explicit (_normal_) Histogram.
`ExplicitBounds` is represents the list of bucket boundaries for the new
histogram. This argument is __required__ and __cannot be empty__.
__WARNING:__
The process of converting an ExponentialHistogram to an Explicit
Histogram is not perfect and may result in a loss of precision. It is
important to define an appropriate set of bucket boundaries to minimize
this loss. For example, selecting Boundaries that are too high or too
low may result histogram buckets that are too wide or too narrow,
respectively.
---------
Co-authored-by: Kent Quirk <[email protected]>
Co-authored-by: Tyler Helmuth <[email protected]>
- `copy_metric(desc="new desc") where description == "old desc"`
358
359
360
+
361
+
### convert_exponential_histogram_to_histogram
362
+
363
+
__Warning:__ The approach used in this function to convert exponential histograms to explicit histograms __is not__ part of the __OpenTelemetry Specification__.
The `convert_exponential_histogram_to_histogram` function converts an ExponentialHistogram to an Explicit (_normal_) Histogram.
368
+
369
+
This function requires 2 arguments:
370
+
371
+
- `distribution` - This argument defines the distribution algorithm used to allocate the exponential histogram datapoints into a new Explicit Histogram. There are 4 options:
372
+
<br>
373
+
- __upper__ - This approach identifies the highest possible value of each exponential bucket (_the upper bound_) and uses it to distribute the datapoints by comparing the upper bound of each bucket with the ExplicitBounds provided. This approach works better for small/narrow exponential histograms where the difference between the upper bounds and lower bounds are small.
374
+
375
+
_For example, Given:_
376
+
1. count = 10
377
+
2. Boundaries: [5, 10, 15, 20, 25]
378
+
3. Upper Bound: 15
379
+
_Process:_
380
+
4. Start with zeros: [0, 0, 0, 0, 0]
381
+
5. Iterate the boundaries and compare $upper = 15$ with each boundary:
382
+
- $15>5$ (_skip_)
383
+
- $15>10$ (_skip_)
384
+
- $15<=15$ (allocate count to this boundary)
385
+
6. Allocate count: [0, 0, __10__, 0, 0]
386
+
7. Final Counts: [0, 0, __10__, 0, 0]
387
+
<br>
388
+
- __midpoint__ - This approach works in a similar way to the __upper__ approach, but instead of using the upper bound, it uses the midpoint of each exponential bucket. The midpoint is identified by calculating the average of the upper and lower bounds. This approach also works better for small/narrow exponential histograms.
389
+
<br>
390
+
391
+
>The __uniform__ and __random__ distribution algorithms both utilise the concept of intersecting boundaries.
392
+
Intersecting boundaries are any boundary in the `boundaries array` that falls between or on the lower and upper values of the Exponential Histogram boundaries.
393
+
_For Example:_ if you have an Exponential Histogram bucket with a lower bound of 10 and upper of 20, and your boundaries array is [5, 10, 15, 20, 25], the intersecting boundaries are 10, 15, and 20 because they lie within the range [10, 20].
394
+
<br>
395
+
- __uniform__ - This approach distributes the datapoints for each bucket uniformly across the intersecting __ExplicitBounds__. The algorithm works as follows:
396
+
397
+
- If there are valid intersecting boundaries, the function evenly distributes the count across these boundaries.
398
+
- Calculate the count to be allocated to each boundary.
399
+
- If there is a remainder after dividing the count equally, it distributes the remainder by incrementing the count for some of the boundaries until the remainder is exhausted.
400
+
401
+
_For example Given:_
402
+
1. count = 10
403
+
2. Exponential Histogram Bounds: [10, 20]
404
+
3. Boundaries: [5, 10, 15, 20, 25]
405
+
4. Intersecting Boundaries: [10, 15, 20]
406
+
5. Number of Intersecting Boundaries: 3
407
+
6. Using the formula: $count/numOfIntersections=10/3=3r1$
408
+
_Uniform Allocation:_
409
+
7. Start with zeros: [0, 0, 0, 0, 0]
410
+
8. Allocate 3 to each: [0, 3, 3, 3, 0]
411
+
9. Distribute remainder $r$ 1: [0, 4, 3, 3, 0]
412
+
10. Final Counts: [0, 4, 3, 3, 0]
413
+
<br>
414
+
- __random__ - This approach distributes the datapoints for each bucket randomly across the intersecting __ExplicitBounds__. This approach works in a similar manner to the uniform distribution algorithm with the main difference being that points are distributed randomly instead of uniformly. This works as follows:
415
+
- If there are valid intersecting boundaries, calculate the proportion of the count that should be allocated to each boundary based on the overlap of the boundary with the provided range (lower to upper).
416
+
- For each boundary, a random fraction of the calculated proportion is allocated.
417
+
- Any remaining count (_due to rounding or random distribution_) is then distributed randomly among the intersecting boundaries.
418
+
- If the bucket range does not intersect with any boundaries, the entire count is assigned to the start boundary.
419
+
<br>
420
+
- `ExplicitBounds`represents the list of bucket boundaries for the new histogram. This argument is __required__ and __cannot be empty__.
421
+
422
+
__WARNINGS:__
423
+
424
+
- The process of converting an ExponentialHistogram to an Explicit Histogram is not perfect and may result in a loss of precision. It is important to define an appropriate set of bucket boundaries and identify the best distribution approach for your data in order to minimize this loss.
425
+
426
+
For example, selecting Boundaries that are too high or too low may result histogram buckets that are too wide or too narrow, respectively.
427
+
428
+
- __Negative Bucket Counts__ are not supported in Explicit Histograms, as such negative bucket counts are ignored.
429
+
430
+
- __ZeroCounts__ are only allocated if the ExplicitBounds array contains a zero boundary. That is, if the Explicit Boundaries that you provide does not start with `0`, the function will not allocate any zero counts from the Exponential Histogram.
431
+
432
+
This function should only be used when Exponential Histograms are not suitable for the downstream consumers or if upstream metric sources are unable to generate Explicit Histograms.
0 commit comments