Uses of Class
io.opentelemetry.sdk.logs.LogLimits
-
Packages that use LogLimits Package Description io.opentelemetry.sdk.autoconfigure io.opentelemetry.sdk.logs The OpenTelemetry SDK implementation of logging. -
-
Uses of LogLimits in io.opentelemetry.sdk.autoconfigure
Methods in io.opentelemetry.sdk.autoconfigure that return LogLimits Modifier and Type Method Description (package private) static LogLimits
LoggerProviderConfiguration. configureLogLimits(ConfigProperties config)
-
Uses of LogLimits in io.opentelemetry.sdk.logs
Subclasses of LogLimits in io.opentelemetry.sdk.logs Modifier and Type Class Description (package private) class
AutoValue_LogLimits
Fields in io.opentelemetry.sdk.logs declared as LogLimits Modifier and Type Field Description private static LogLimits
LogLimits. DEFAULT
private LogLimits
SdkLogRecordBuilder. logLimits
private LogLimits
SdkReadWriteLogRecord. logLimits
Fields in io.opentelemetry.sdk.logs with type parameters of type LogLimits Modifier and Type Field Description private java.util.function.Supplier<LogLimits>
LoggerSharedState. logLimitsSupplier
private java.util.function.Supplier<LogLimits>
SdkLoggerProviderBuilder. logLimitsSupplier
Methods in io.opentelemetry.sdk.logs that return LogLimits Modifier and Type Method Description LogLimits
LogLimitsBuilder. build()
Builds and returns aLogLimits
with the values of this builder.(package private) static LogLimits
LogLimits. create(int maxNumAttributes, int maxAttributeLength)
static LogLimits
LogLimits. getDefault()
Returns the defaultLogLimits
.(package private) LogLimits
LoggerSharedState. getLogLimits()
Methods in io.opentelemetry.sdk.logs with parameters of type LogLimits Modifier and Type Method Description (package private) static SdkReadWriteLogRecord
SdkReadWriteLogRecord. create(LogLimits logLimits, Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, long timestampEpochNanos, long observedTimestampEpochNanos, SpanContext spanContext, Severity severity, java.lang.String severityText, Value<?> body, AttributesMap attributes)
Create the log record with the given configuration.Method parameters in io.opentelemetry.sdk.logs with type arguments of type LogLimits Modifier and Type Method Description SdkLoggerProviderBuilder
SdkLoggerProviderBuilder. setLogLimits(java.util.function.Supplier<LogLimits> logLimitsSupplier)
Assign aSupplier
ofLogLimits
.Constructors in io.opentelemetry.sdk.logs with parameters of type LogLimits Constructor Description SdkReadWriteLogRecord(LogLimits logLimits, Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, long timestampEpochNanos, long observedTimestampEpochNanos, SpanContext spanContext, Severity severity, java.lang.String severityText, Value<?> body, AttributesMap attributes)
Constructor parameters in io.opentelemetry.sdk.logs with type arguments of type LogLimits Constructor Description LoggerSharedState(Resource resource, java.util.function.Supplier<LogLimits> logLimitsSupplier, LogRecordProcessor logRecordProcessor, Clock clock)
SdkLoggerProvider(Resource resource, java.util.function.Supplier<LogLimits> logLimitsSupplier, java.util.List<LogRecordProcessor> processors, Clock clock, ScopeConfigurator<LoggerConfig> loggerConfigurator)
-