Global configuration of trace service

interface SpanLimits {
    attributeCountLimit?: number;
    attributePerEventCountLimit?: number;
    attributePerLinkCountLimit?: number;
    attributeValueLengthLimit?: number;
    eventCountLimit?: number;
    linkCountLimit?: number;
}

Properties

attributeCountLimit?: number

attributeCountLimit is number of attributes per span

attributePerEventCountLimit?: number

attributePerEventCountLimit is the maximum number of attributes allowed per span event

attributePerLinkCountLimit?: number

attributePerLinkCountLimit is the maximum number of attributes allowed per span link

attributeValueLengthLimit?: number

attributeValueLengthLimit is maximum allowed attribute value size

eventCountLimit?: number

eventCountLimit is number of message events per span

linkCountLimit?: number

linkCountLimit is number of links per span