Package io.opentelemetry.sdk.logs
Class AutoValue_LogLimits
- java.lang.Object
-
- io.opentelemetry.sdk.logs.LogLimits
-
- io.opentelemetry.sdk.logs.AutoValue_LogLimits
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_LogLimits extends LogLimits
-
-
Field Summary
Fields Modifier and Type Field Description private intmaxAttributeValueLengthprivate intmaxNumberOfAttributes
-
Constructor Summary
Constructors Constructor Description AutoValue_LogLimits(int maxNumberOfAttributes, int maxAttributeValueLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)intgetMaxAttributeValueLength()Returns the max number of characters for string attribute values.intgetMaxNumberOfAttributes()Returns the max number of attributes perLogRecordData.inthashCode()java.lang.StringtoString()-
Methods inherited from class io.opentelemetry.sdk.logs.LogLimits
builder, create, getDefault, toBuilder
-
-
-
-
Method Detail
-
getMaxNumberOfAttributes
public int getMaxNumberOfAttributes()
Description copied from class:LogLimitsReturns the max number of attributes perLogRecordData.- Specified by:
getMaxNumberOfAttributesin classLogLimits- Returns:
- the max number of attributes per
LogRecordData.
-
getMaxAttributeValueLength
public int getMaxAttributeValueLength()
Description copied from class:LogLimitsReturns the max number of characters for string attribute values. For string array attribute values, applies to each entry individually.- Specified by:
getMaxAttributeValueLengthin classLogLimits- 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
-
-