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

declare(strict_types=1);

namespace OpenTelemetry\SDK\Trace;

interface IdGeneratorInterface
{
    public function generateTraceId(): string;

    public function generateSpanId(): string;
}