SpanFlags.php
Namespace
Opentelemetry\Proto\Trace\V1File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Trace/ V1/ SpanFlags.php
View source
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: opentelemetry/proto/trace/v1/trace.proto
namespace Opentelemetry\Proto\Trace\V1;
use UnexpectedValueException;
/**
* SpanFlags represents constants used to interpret the
* Span.flags field, which is protobuf 'fixed32' type and is to
* be used as bit-fields. Each non-zero value defined in this enum is
* a bit-mask. To extract the bit-field, for example, use an
* expression like:
* (span.flags & SPAN_FLAGS_TRACE_FLAGS_MASK)
* See https://www.w3.org/TR/trace-context-2/#trace-flags for the flag definitions.
* Note that Span flags were introduced in version 1.1 of the
* OpenTelemetry protocol. Older Span producers do not set this
* field, consequently consumers should not rely on the absence of a
* particular flag bit to indicate the presence of a particular feature.
*
* Protobuf type <code>opentelemetry.proto.trace.v1.SpanFlags</code>
*/
class SpanFlags {
/**
* The zero value for the enum. Should not be used for comparisons.
* Instead use bitwise "and" with the appropriate mask as shown above.
*
* Generated from protobuf enum <code>SPAN_FLAGS_DO_NOT_USE = 0;</code>
*/
const SPAN_FLAGS_DO_NOT_USE = 0;
/**
* Bits 0-7 are used for trace flags.
*
* Generated from protobuf enum <code>SPAN_FLAGS_TRACE_FLAGS_MASK = 255;</code>
*/
const SPAN_FLAGS_TRACE_FLAGS_MASK = 255;
/**
* Bits 8 and 9 are used to indicate that the parent span or link span is remote.
* Bit 8 (`HAS_IS_REMOTE`) indicates whether the value is known.
* Bit 9 (`IS_REMOTE`) indicates whether the span or link is remote.
*
* Generated from protobuf enum <code>SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK = 256;</code>
*/
const SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK = 256;
/**
* Generated from protobuf enum <code>SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK = 512;</code>
*/
const SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK = 512;
private static $valueToName = [
self::SPAN_FLAGS_DO_NOT_USE => 'SPAN_FLAGS_DO_NOT_USE',
self::SPAN_FLAGS_TRACE_FLAGS_MASK => 'SPAN_FLAGS_TRACE_FLAGS_MASK',
self::SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK => 'SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK',
self::SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK => 'SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK',
];
public static function name($value) {
if (!isset(self::$valueToName[$value])) {
throw new UnexpectedValueException(sprintf('Enum %s has no name defined for value %s', __CLASS__, $value));
}
return self::$valueToName[$value];
}
public static function value($name) {
$const = __CLASS__ . '::' . strtoupper($name);
if (!defined($const)) {
throw new UnexpectedValueException(sprintf('Enum %s has no value defined for name %s', __CLASS__, $name));
}
return constant($const);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
SpanFlags | SpanFlags represents constants used to interpret the Span.flags field, which is protobuf 'fixed32' type and is to be used as bit-fields. Each non-zero value defined in this enum is a bit-mask. To extract the bit-field, for example, use… |