opentelemetry.proto.metrics.v1.DataPointFlags
*/
class DataPointFlags
{
/**
* 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 DATA_POINT_FLAGS_DO_NOT_USE = 0;
*/
const DATA_POINT_FLAGS_DO_NOT_USE = 0;
/**
* This DataPoint is valid but has no recorded value. This value
* SHOULD be used to reflect explicitly missing data in a series, as
* for an equivalent to the Prometheus "staleness marker".
*
* Generated from protobuf enum DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK = 1;
*/
const DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK = 1;
private static $valueToName = [
self::DATA_POINT_FLAGS_DO_NOT_USE => 'DATA_POINT_FLAGS_DO_NOT_USE',
self::DATA_POINT_FLAGS_NO_RECORDED_VALUE_MASK => 'DATA_POINT_FLAGS_NO_RECORDED_VALUE_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);
}
}