summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Metrics/Data/Exemplar.php
blob: bd2034f75b25e310cd987624f0cbdfab73c1c4cc (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
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics\Data;

use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;

final class Exemplar
{

    /**
     * @var int|string
     */
    private $index;
    /**
     * @var float|int
     * @readonly
     */
    public $value;
    /**
     * @readonly
     */
    public int $timestamp;
    /**
     * @readonly
     */
    public AttributesInterface $attributes;
    /**
     * @readonly
     */
    public ?string $traceId;
    /**
     * @readonly
     */
    public ?string $spanId;

    /**
     * @param int|string $index
     * @param float|int $value
     */
    public function __construct($index, $value, int $timestamp, AttributesInterface $attributes, ?string $traceId, ?string $spanId)
    {
        $this->index = $index;
        $this->value = $value;
        $this->timestamp = $timestamp;
        $this->attributes = $attributes;
        $this->traceId = $traceId;
        $this->spanId = $spanId;
    }

    /**
     * @param iterable<Exemplar> $exemplars
     * @return array<list<Exemplar>>
     */
    public static function groupByIndex(iterable $exemplars): array
    {
        $grouped = [];
        foreach ($exemplars as $exemplar) {
            $grouped[$exemplar->index][] = $exemplar;
        }

        return $grouped;
    }
}