Uses of Class
io.opentelemetry.sdk.trace.SpanLimits
-
Packages that use SpanLimits Package Description io.opentelemetry.sdk.autoconfigure io.opentelemetry.sdk.trace The OpenTelemetry SDK implementation of tracing. -
-
Uses of SpanLimits in io.opentelemetry.sdk.autoconfigure
Methods in io.opentelemetry.sdk.autoconfigure that return SpanLimits Modifier and Type Method Description (package private) static SpanLimits
TracerProviderConfiguration. configureSpanLimits(ConfigProperties config)
-
Uses of SpanLimits in io.opentelemetry.sdk.trace
Subclasses of SpanLimits in io.opentelemetry.sdk.trace Modifier and Type Class Description (package private) class
AutoValue_SpanLimits_SpanLimitsValue
(package private) static class
SpanLimits.SpanLimitsValue
Fields in io.opentelemetry.sdk.trace declared as SpanLimits Modifier and Type Field Description private static SpanLimits
SpanLimits. DEFAULT
private SpanLimits
SdkSpan. spanLimits
private SpanLimits
SdkSpanBuilder. spanLimits
Fields in io.opentelemetry.sdk.trace with type parameters of type SpanLimits Modifier and Type Field Description private java.util.function.Supplier<SpanLimits>
SdkTracerProviderBuilder. spanLimitsSupplier
private java.util.function.Supplier<SpanLimits>
TracerSharedState. spanLimitsSupplier
Methods in io.opentelemetry.sdk.trace that return SpanLimits Modifier and Type Method Description SpanLimits
SpanLimitsBuilder. build()
Builds and returns aSpanLimits
with the values of this builder.(package private) static SpanLimits
SpanLimits. create(int maxNumAttributes, int maxNumEvents, int maxNumLinks, int maxNumAttributesPerEvent, int maxNumAttributesPerLink, int maxAttributeLength)
static SpanLimits
SpanLimits. getDefault()
Returns the defaultSpanLimits
.SpanLimits
SdkTracerProvider. getSpanLimits()
Returns theSpanLimits
that are currently applied to created spans.(package private) SpanLimits
TracerSharedState. getSpanLimits()
Returns the currentSpanLimits
.Methods in io.opentelemetry.sdk.trace with parameters of type SpanLimits Modifier and Type Method Description SdkTracerProviderBuilder
SdkTracerProviderBuilder. setSpanLimits(SpanLimits spanLimits)
Assign an initialSpanLimits
that should be used with this SDK.(package private) static SdkSpan
SdkSpan. startSpan(SpanContext context, java.lang.String name, InstrumentationScopeInfo instrumentationScopeInfo, SpanKind kind, Span parentSpan, Context parentContext, SpanLimits spanLimits, SpanProcessor spanProcessor, Clock tracerClock, Resource resource, AttributesMap attributes, java.util.List<LinkData> links, int totalRecordedLinks, long userStartEpochNanos)
Creates and starts a span with the given configuration.Method parameters in io.opentelemetry.sdk.trace with type arguments of type SpanLimits Modifier and Type Method Description SdkTracerProviderBuilder
SdkTracerProviderBuilder. setSpanLimits(java.util.function.Supplier<SpanLimits> spanLimitsSupplier)
Assign aSupplier
ofSpanLimits
.Constructors in io.opentelemetry.sdk.trace with parameters of type SpanLimits Constructor Description SdkSpan(SpanContext context, java.lang.String name, InstrumentationScopeInfo instrumentationScopeInfo, SpanKind kind, SpanContext parentSpanContext, SpanLimits spanLimits, SpanProcessor spanProcessor, AnchoredClock clock, Resource resource, AttributesMap attributes, java.util.List<LinkData> links, int totalRecordedLinks, long startEpochNanos)
SdkSpanBuilder(java.lang.String spanName, InstrumentationScopeInfo instrumentationScopeInfo, TracerSharedState tracerSharedState, SpanLimits spanLimits)
Constructor parameters in io.opentelemetry.sdk.trace with type arguments of type SpanLimits Constructor Description SdkTracerProvider(Clock clock, IdGenerator idsGenerator, Resource resource, java.util.function.Supplier<SpanLimits> spanLimitsSupplier, Sampler sampler, java.util.List<SpanProcessor> spanProcessors, ScopeConfigurator<TracerConfig> tracerConfigurator)
TracerSharedState(Clock clock, IdGenerator idGenerator, Resource resource, java.util.function.Supplier<SpanLimits> spanLimitsSupplier, Sampler sampler, java.util.List<SpanProcessor> spanProcessors)
-