Represents runtime diagnostics for the active LogManager instance.
public readonly record struct LogManagerDiagnostics(bool IsInitialized, Type? ProcessorType, bool IsAsyncProcessor, int AsyncQueueLength, int AsyncQueueCapacity, long DroppedMessages, long ErrorCount) : IEquatable<LogManagerDiagnostics>
kind:method, kind:property, kind:ctor. Press Esc to clear.LogManagerDiagnostics(Boolean, Type?, Boolean, Int32, Int32, Int64, Int64)Represents runtime diagnostics for the active LogManager instance.AsyncQueueCapacityThe configured asynchronous queue capacity.AsyncQueueLengthThe current asynchronous queue length.DroppedMessagesThe number of dropped messages tracked by the async processor.ErrorCountThe number of async processing errors observed by the async processor.IsAsyncProcessorIndicates whether the active processor is asynchronous.IsInitializedIndicates whether the log manager is initialized.ProcessorTypeThe active processor type when initialized.UninitializedGets diagnostics for an uninitialized manager.