OpenTelemetry SDK
    Preparing search index...

    Interface LogRecordLimitsConfigModel

    Configure log record limits. See also attribute_limits. If omitted, default values as described in LogRecordLimits are used.

    interface LogRecordLimitsConfigModel {
        attribute_count_limit?: number | null;
        attribute_value_length_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.