OpenTelemetry SDK
    Preparing search index...

    Interface SpanLimitsConfigModel

    Configure span limits. See also attribute_limits. If omitted, default values as described in SpanLimits are used.

    interface SpanLimitsConfigModel {
        attribute_count_limit?: number | null;
        attribute_value_length_limit?: number | null;
        event_attribute_count_limit?: number | null;
        event_count_limit?: number | null;
        link_attribute_count_limit?: number | null;
        link_count_limit?: number | null;
    }
    Index
    attribute_count_limit?: number | null

    Configure max attribute count. Overrides .attribute_limits.attribute_count_limit. Value must be non-negative. If omitted or null, 128 is used.

    attribute_value_length_limit?: number | null

    Configure max attribute value size. Overrides .attribute_limits.attribute_value_length_limit. Value must be non-negative. If omitted or null, there is no limit.

    event_attribute_count_limit?: number | null

    Configure max attributes per span event. Value must be non-negative. If omitted or null, 128 is used.

    event_count_limit?: number | null

    Configure max span event count. Value must be non-negative. If omitted or null, 128 is used.

    link_attribute_count_limit?: number | null

    Configure max attributes per span link. Value must be non-negative. If omitted or null, 128 is used.

    link_count_limit?: number | null

    Configure max span link count. Value must be non-negative. If omitted or null, 128 is used.