AttributesFactory.php
Namespace
OpenTelemetry\SDK\Common\AttributeFile
-
vendor/
open-telemetry/ sdk/ Common/ Attribute/ AttributesFactory.php
View source
<?php
declare (strict_types=1);
namespace OpenTelemetry\SDK\Common\Attribute;
/**
* @internal
*/
final class AttributesFactory implements AttributesFactoryInterface {
public function __construct(?int $attributeCountLimit = null, ?int $attributeValueLengthLimit = null) {
}
public function builder(iterable $attributes = [], ?AttributeValidatorInterface $attributeValidator = null) : AttributesBuilderInterface {
$builder = new AttributesBuilder([], $this->attributeCountLimit, $this->attributeValueLengthLimit, 0, $attributeValidator ?? new AttributeValidator());
foreach ($attributes as $key => $value) {
$builder[$key] = $value;
}
return $builder;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
AttributesFactory | @internal |