Interface SpanConfig
-
public interface SpanConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegerattributeCountLimit()The maximum number of attributes per span.Optional<Integer>attributeValueLengthLimit()The maximum length of span attribute values.IntegereventCountLimit()The maximum number of events per span.IntegerlinkCountLimit()The maximum number of links per span.
-
-
-
Method Detail
-
attributeValueLengthLimit
@WithName("attribute.value.length.limit") Optional<Integer> attributeValueLengthLimit()The maximum length of span attribute values. Takes precedence overotel.attribute.value.length.limit.By default, there is no limit.
-
attributeCountLimit
@WithName("attribute.count.limit") @WithDefault("128") Integer attributeCountLimit()The maximum number of attributes per span. Takes precedence overotel.attribute.count.limit.Default is `128`.
-
eventCountLimit
@WithName("event.count.limit") @WithDefault("128") Integer eventCountLimit()The maximum number of events per span.Default is `128`.
-
linkCountLimit
@WithName("link.count.limit") @WithDefault("128") Integer linkCountLimit()The maximum number of links per span.Default is `128`.
-
-