LokiLoggingProvider
LokiLoggingProvider copied to clipboard
Send logs directly to Grafana Loki from your .NET 6 and up application.
I'm getting the following error System.AggregateException: 'An error occurred while writing to logger(s). (Cannot access a disposed object. Object name: 'LokiLogEntryProcessor'.)' Inner Exception: ObjectDisposedException: Cannot access a disposed object. Object...
**Steps to reproduce:** - Create the new ASP.NET Core Web API application with controllers and OpenApi - Add the Loki logger with the following settings: ``` builder.Logging.AddLoki(configure => { configure.Client...