summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/Aggregation/SumAggregation.php
blob: dc317ce73e1674689ee4d1cbd2f77df03a61d602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics\Aggregation;

use OpenTelemetry\Context\ContextInterface;
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;
use OpenTelemetry\SDK\Metrics\AggregationInterface;
use OpenTelemetry\SDK\Metrics\Data;

/**
 * @implements AggregationInterface<SumSummary>
 */
final class SumAggregation implements AggregationInterface
{
    private bool $monotonic;

    public function __construct(bool $monotonic = false)
    {
        $this->monotonic = $monotonic;
    }

    public function initialize(): SumSummary
    {
        return new SumSummary(0);
    }

    /**
     * @param SumSummary $summary
     */
    public function record($summary, $value, AttributesInterface $attributes, ContextInterface $context, int $timestamp): void
    {
        $summary->value += $value;
    }

    /**
     * @param SumSummary $left
     * @param SumSummary $right
     */
    public function merge($left, $right): SumSummary
    {
        $sum = $left->value + $right->value;

        return new SumSummary(
            $sum,
        );
    }

    /**
     * @param SumSummary $left
     * @param SumSummary $right
     */
    public function diff($left, $right): SumSummary
    {
        $sum = -$left->value + $right->value;

        return new SumSummary(
            $sum,
        );
    }

    /**
     * @param array<SumSummary> $summaries
     */
    public function toData(
        array $attributes,
        array $summaries,
        array $exemplars,
        int $startTimestamp,
        int $timestamp,
        $temporality
    ): Data\Sum {
        $dataPoints = [];
        foreach ($attributes as $key => $dataPointAttributes) {
            $dataPoints[] = new Data\NumberDataPoint(
                $summaries[$key]->value,
                $dataPointAttributes,
                $startTimestamp,
                $timestamp,
                $exemplars[$key] ?? [],
            );
        }

        return new Data\Sum(
            $dataPoints,
            $temporality,
            $this->monotonic,
        );
    }
}