Interface SpanConfig


public interface SpanConfig
  • Method Details

    • attributeValueLengthLimit

      @WithName("attribute.value.length.limit") Optional<Integer> attributeValueLengthLimit()
      The maximum length of span attribute values. Takes precedence over otel.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 over otel.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`.