OpenTelemetry SDK
    Preparing search index...

    Interface AttributeLimitsConfigModel

    Configure general attribute limits. See also tracer_provider.limits, logger_provider.limits. If omitted, default values as described in AttributeLimits are used.

    interface AttributeLimitsConfigModel {
        attribute_count_limit?: number | null;
        attribute_value_length_limit?: number | null;
    }
    Index
    attribute_count_limit?: number | null

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

    attribute_value_length_limit?: number | null

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