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

declare(strict_types=1);

namespace OpenTelemetry\SDK\Metrics\Exemplar;

use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;

/**
 * @internal
 */
final class BucketEntry
{
    /**
     * @var int|string
     */
    public $index;
    /**
     * @var float|int
     */
    public $value;
    public int $timestamp;
    public AttributesInterface $attributes;
    public ?string $traceId = null;
    public ?string $spanId = null;
}