簡體   English   中英

如何讓Serilog豐富日志

[英]How to get Serilog to enrich logs

我已將 Serilog 設置為從appsettings.json讀取其配置:

return WebHost.CreateDefaultBuilder(args)
   .UseSerilog((ctx, config) => { config.ReadFrom.Configuration(ctx.Configuration); })

appsettings.json 具有以下指定增強器的相關信息:

{
  "Serilog": {
    "WriteTo": [
      {
        "Name": "RollingFile",
        "Args": {
          "pathFormat": "%WIDGETSAPIBASEDIR%\\logs\\log-{Date}.txt"
        }
      },
      {
        "Name": "Debug"
      }
    ],
    "Enrich": [ "CorrelationId" ]
  }
}

生成的日志不包含Enrich屬性中指定的任何數據。

我已經導入Serilog.Enrichers.CorrelationId ,但仍然一無所獲。

我也試過"Enrich": [ "WithCorrelationId" ] 我也試過其他("FromLogContext", "WithMachineName", "WithThreadId") ,但還是一無所獲。

我錯過了什么?

這是我的有效配置文件的示例。 請注意,我有 output 模板和豐富內容?

 "Serilog": {
    "MinimumLevel": {
      "Default": "Debug",
      "Override": {
        "Microsoft": "Warning",
        "System": "Warning"
      }
    },
    "WriteTo": [
      {
        "Name": "Async",
        "Args": {
          "configure": [
            {
              "Name": "File",
              "Args": {
                "path": ".//Logs//app.log-.txt",
                "rollingInterval": "Day",
                "rollOnFileSizeLimit": true,
                "outputTemplate": "[{Timestamp :HH:mm:ss} {Level:u3} {SourceContext, -20} {ProcessId} {ProcessName} {ThreadId}] {Message}\n{Exception}",
            ,
                "shared": true
              }
            },
            {
              "Name": "Console"
            }
          ]
        }
      },
      {
        "Name": "SpectreConsole",
        "Args": {
          "outputTemplate": "[{Timestamp:HH:mm:ss} [{Level:u3} {ProcessId}] {Message:lj}{NewLine}{Exception}",
          "minLevel": "Verbose"
        }
      }
    ],
    "Enrich": [
      "FromLogContext",
      "WithMemoryUsage",
      "WithProcessId",
      "WithProcessName",
      "WithThreadId",
      "WithThreadName"
    ]
  }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM