summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Trace/EventInterface.php
blob: 8b5ee2af6b982d6147e54e8ebce817e27bfce757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Trace;

use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;

interface EventInterface
{
    public function getName(): string;
    public function getAttributes(): AttributesInterface;
    public function getEpochNanos(): int;
    public function getTotalAttributeCount(): int;
}