Interface AttributeConfig
-
public interface AttributeConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegercountLimit()The maximum number of attributes.Optional<String>valueLengthLimit()The maximum length of attribute values.
-
-
-
Method Detail
-
valueLengthLimit
@WithName("value.length.limit") Optional<String> valueLengthLimit()The maximum length of attribute values. Applies to spans and logs.By default, there is no limit.
-
countLimit
@WithName("count.limit") @WithDefault("128") Integer countLimit()The maximum number of attributes. Applies to spans, span events, span links, and logs.Default is `128`.
-
-