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

declare(strict_types=1);

namespace OpenTelemetry\API\Trace;

/**
 * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.6.1/specification/trace/api.md#set-status
 */
interface StatusCode
{
    public const STATUS_UNSET = 'Unset';
    public const STATUS_OK = 'Ok';
    public const STATUS_ERROR = 'Error';
}