Package io.opentelemetry.sdk.trace
Class AutoValue_SpanLimits_SpanLimitsValue
- java.lang.Object
-
- io.opentelemetry.sdk.trace.SpanLimits
-
- io.opentelemetry.sdk.trace.SpanLimits.SpanLimitsValue
-
- io.opentelemetry.sdk.trace.AutoValue_SpanLimits_SpanLimitsValue
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_SpanLimits_SpanLimitsValue extends SpanLimits.SpanLimitsValue
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class io.opentelemetry.sdk.trace.SpanLimits
SpanLimits.SpanLimitsValue
-
-
Field Summary
Fields Modifier and Type Field Description private intmaxAttributeValueLengthprivate intmaxNumberOfAttributesprivate intmaxNumberOfAttributesPerEventprivate intmaxNumberOfAttributesPerLinkprivate intmaxNumberOfEventsprivate intmaxNumberOfLinks-
Fields inherited from class io.opentelemetry.sdk.trace.SpanLimits
DEFAULT_SPAN_MAX_ATTRIBUTE_LENGTH
-
-
Constructor Summary
Constructors Constructor Description AutoValue_SpanLimits_SpanLimitsValue(int maxNumberOfAttributes, int maxNumberOfEvents, int maxNumberOfLinks, int maxNumberOfAttributesPerEvent, int maxNumberOfAttributesPerLink, int maxAttributeValueLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)intgetMaxAttributeValueLength()OverrideSpanLimits.getMaxAttributeValueLength()to be abstract so autovalue can implement it.intgetMaxNumberOfAttributes()Returns the max number of attributes perSpan.intgetMaxNumberOfAttributesPerEvent()Returns the max number of attributes per event.intgetMaxNumberOfAttributesPerLink()Returns the max number of attributes per link.intgetMaxNumberOfEvents()Returns the max number of events perSpan.intgetMaxNumberOfLinks()Returns the max number of links perSpan.inthashCode()java.lang.StringtoString()-
Methods inherited from class io.opentelemetry.sdk.trace.SpanLimits
builder, create, getDefault, toBuilder
-
-
-
-
Field Detail
-
maxNumberOfAttributes
private final int maxNumberOfAttributes
-
maxNumberOfEvents
private final int maxNumberOfEvents
-
maxNumberOfLinks
private final int maxNumberOfLinks
-
maxNumberOfAttributesPerEvent
private final int maxNumberOfAttributesPerEvent
-
maxNumberOfAttributesPerLink
private final int maxNumberOfAttributesPerLink
-
maxAttributeValueLength
private final int maxAttributeValueLength
-
-
Method Detail
-
getMaxNumberOfAttributes
public int getMaxNumberOfAttributes()
Description copied from class:SpanLimitsReturns the max number of attributes perSpan.- Specified by:
getMaxNumberOfAttributesin classSpanLimits- Returns:
- the max number of attributes per
Span.
-
getMaxNumberOfEvents
public int getMaxNumberOfEvents()
Description copied from class:SpanLimitsReturns the max number of events perSpan.- Specified by:
getMaxNumberOfEventsin classSpanLimits- Returns:
- the max number of events per
Span.
-
getMaxNumberOfLinks
public int getMaxNumberOfLinks()
Description copied from class:SpanLimitsReturns the max number of links perSpan.- Specified by:
getMaxNumberOfLinksin classSpanLimits- Returns:
- the max number of links per
Span.
-
getMaxNumberOfAttributesPerEvent
public int getMaxNumberOfAttributesPerEvent()
Description copied from class:SpanLimitsReturns the max number of attributes per event.- Specified by:
getMaxNumberOfAttributesPerEventin classSpanLimits- Returns:
- the max number of attributes per event.
-
getMaxNumberOfAttributesPerLink
public int getMaxNumberOfAttributesPerLink()
Description copied from class:SpanLimitsReturns the max number of attributes per link.- Specified by:
getMaxNumberOfAttributesPerLinkin classSpanLimits- Returns:
- the max number of attributes per link.
-
getMaxAttributeValueLength
public int getMaxAttributeValueLength()
Description copied from class:SpanLimits.SpanLimitsValueOverrideSpanLimits.getMaxAttributeValueLength()to be abstract so autovalue can implement it.- Specified by:
getMaxAttributeValueLengthin classSpanLimits.SpanLimitsValue- Returns:
- the max number of characters for attribute strings.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-