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 int
maxAttributeValueLength
private int
maxNumberOfAttributes
-
Constructor Summary
Constructors Constructor Description AutoValue_LogLimits(int maxNumberOfAttributes, int maxAttributeValueLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
getMaxAttributeValueLength()
Returns the max number of characters for string attribute values.int
getMaxNumberOfAttributes()
Returns the max number of attributes perLogRecordData
.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opentelemetry.sdk.logs.LogLimits
builder, create, getDefault, toBuilder
-
-
-
-
Method Detail
-
getMaxNumberOfAttributes
public int getMaxNumberOfAttributes()
Description copied from class:LogLimits
Returns the max number of attributes perLogRecordData
.- Specified by:
getMaxNumberOfAttributes
in classLogLimits
- Returns:
- the max number of attributes per
LogRecordData
.
-
getMaxAttributeValueLength
public int getMaxAttributeValueLength()
Description copied from class:LogLimits
Returns the max number of characters for string attribute values. For string array attribute values, applies to each entry individually.- Specified by:
getMaxAttributeValueLength
in classLogLimits
- Returns:
- the max number of characters for attribute strings.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-