Package io.opentelemetry.sdk.trace
Class SpanLimits
java.lang.Object
io.opentelemetry.sdk.trace.SpanLimits
Class that holds limits enforced during span recording.
Note: To allow dynamic updates of SpanLimits you should register a Supplier with SdkTracerProviderBuilder.setSpanLimits(java.util.function.Supplier)
which supplies dynamic configs when queried.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDeprecated.Will be made package private in 2.0.0. -
Method Summary
Modifier and TypeMethodDescriptionstatic SpanLimitsBuilderbuilder()Returns a newSpanLimitsBuilderto construct aSpanLimits.static SpanLimitsReturns the defaultSpanLimits.intReturns the max number of characters for string attribute values.abstract intReturns the max number of attributes perSpan.abstract intReturns the max number of attributes per event.abstract intReturns the max number of attributes per link.abstract intReturns the max number of events perSpan.abstract intReturns the max number of links perSpan.Returns aSpanLimitsBuilderinitialized to the same property values as the current instance.
-
Constructor Details
-
SpanLimits
Deprecated.Will be made package private in 2.0.0.Create an instance.
-
-
Method Details
-
getDefault
Returns the defaultSpanLimits. -
builder
Returns a newSpanLimitsBuilderto construct aSpanLimits. -
getMaxNumberOfAttributes
public abstract int getMaxNumberOfAttributes()Returns the max number of attributes perSpan.- Returns:
- the max number of attributes per
Span.
-
getMaxNumberOfEvents
public abstract int getMaxNumberOfEvents()Returns the max number of events perSpan.- Returns:
- the max number of events per
Span.
-
getMaxNumberOfLinks
public abstract int getMaxNumberOfLinks()Returns the max number of links perSpan.- Returns:
- the max number of links per
Span.
-
getMaxNumberOfAttributesPerEvent
public abstract int getMaxNumberOfAttributesPerEvent()Returns the max number of attributes per event.- Returns:
- the max number of attributes per event.
-
getMaxNumberOfAttributesPerLink
public abstract int getMaxNumberOfAttributesPerLink()Returns the max number of attributes per link.- Returns:
- the max number of attributes per link.
-
getMaxAttributeValueLength
public int getMaxAttributeValueLength()Returns the max number of characters for string attribute values. For string array attribute values, applies to each entry individually.- Returns:
- the max number of characters for attribute strings.
-
toBuilder
Returns aSpanLimitsBuilderinitialized to the same property values as the current instance.- Returns:
- a
SpanLimitsBuilderinitialized to the same property values as the current instance.
-