-
Hi,
I'm trying to configure WithCallerInfo via appsettings.json (Serilog.Settings.Configuration). If I configure it via code everything works fine. I have verified that my appsettings.json is actuall…
-
Trace and span correlation has become a widespread feature of diagnostics in .NET and elsewhere. If Serilog was designed today, it's more than likely that trace and span ids would be on an equal footi…
-
Hi this is my serilog configuration in app.settings.json
```
{
"Serilog": {
"Using": [
"Serilog.Sinks.Console",
"Serilog.Sinks.File",
"Serilog.Sinks.Seq",
"Se…
-
**Description**
I have the following in my expression template:
```
"{ElementAt(@x, 'Message')}"
```
I have also tried a few other combinations, like `@x.Message`, `@x['Message']`, and so on.…
-
Hence [Serilog.Enrichers.CorrelationId](https://github.com/ekmsystems/serilog-enrichers-correlation-id) is archived and no longer maintained, I added correlation id enricher to [Serilog.Enrichers.Clie…
-
I've successfully configured Serilog.AspNetCore and it's working great, I'm able to get diagnostics logs enriched with MVC and other request properties when using the OTB `RequestLoggingMiddleware`:
…
-
Sorry in advance if I wrote something wrong but... is it possible to use both X-forwarded-for and CF-Connecting-IP or others?
something like
```
"Args": {
"xForwardHeaderName": [ "CF-Co…
-
Serilog's core `ILogger` interface contains 79 members. This makes it extremely cumbersome to create custom implementation, since all 79 members need to be implemented. This design is very similar to …
-
It will be good to add to readme an example of configuration as an alternative to hardcoded new LoggerConfiguration()
.Enrich.With()-
something like
{
"Serilog": {
"MinimumLevel": "Debug"…
-
We've been using `EnhancedStackTrace.Current().ToString()` in a custom Serilog exception enricher for several years without issue.
Over the past couple days, we started observing a few "random" `Ac…