簡體   English   中英

如何在.net core 中使用 Serilog 在日志中顯示 ClientIp?

[英]How to display ClientIp in logs using Serilog in .net core?

項目正在使用 .Net Core 3.1 WebAPI。

我正在嘗試將客戶端設備的 IP 地址記錄到控制台。 我已經安裝了這個包Serilog.Enrichers.ClientInfo v1.2.0 並按照他們的步驟操作。 除了控制台之外,還有一個帶有 [ClientIp] 列的 ErrorLog 表,我想在其中記錄 IP 地址。 正如您在輸出中看到的,ClientIp 和 ClientAgent 部分都是空白的。 我錯過了什么嗎? 另外請驗證語法是否正確。

這是我來自 appsettings.json 的 Serilog 配置

"Serilog": {
"using": [],
"MinimumLevel": {
  "Default": "Debug",
  "Override": {
    "Microsoft": "Warning",
    "System": "Warning",
    "Microsoft.Hosting.Lifetime": "Information"
  }
},
"Enrich": [ "FromLogContext", "WithMachineName", "WithClientIp", "WithClientAgent" ],
"WriteTo": [
  {
    "Name": "Logger",
    "Args": {
      "configureLogger": {
        "WriteTo": [
          {
            "Name": "Console",
            "Args": {
              "outputTemplate": "[{Level:u3} {Timestamp:o}] {ClientIp} {ClientAgent} ({SourceContext}) {Message} {NewLine}"
            }
          }
        ]
      }
    }
  },
  {
    "Name": "Logger",
    "Args": {
      "configureLogger": {
        "Filter": [
          {
            "Name": "ByIncludingOnly",
            "Args": {
              "expression": "@l in ['Error', 'Fatal']"
            }
          }
        ],
        "WriteTo": [
          {
            "Name": "MSSqlServer",
            "Args": {
              "connectionString": "TestDbContext",
              "tableName": "ErrorLogs",
              "batchPostingLimit": 50,
              "autoCreateSqlTable": true,
               "columnOptionsSection": {
                "removeStandardColumns": [ "MessageTemplate" ],
                "customColumns": [
                  {
                    "ColumnName": "ClientIp",
                    "DataType": "VARCHAR",
                    "AllowNull": true,
                    "DataLength": 50
                    //"NonClusteredIndex": true
                  }
                ]
              }
            }
          }
        ]
      }
    }
  }
]

}

輸出:

[INF 2022-07-11T20:13:49.0041535+05:30]   () APP:API service has 
started
[INF 2022-07-11T20:13:49.5737570+05:30]   
(Microsoft.Hosting.Lifetime) Now listening on: 
"https://localhost:7017"
[INF 2022-07-11T20:13:49.5987755+05:30]   
(Microsoft.Hosting.Lifetime) Now listening on: 
"http://localhost:5017"
[INF 2022-07-11T20:13:49.6185554+05:30]   
(Microsoft.Hosting.Lifetime) Application started. Press Ctrl+C to 
shut down.
[INF 2022-07-11T20:13:49.6255005+05:30]   
(Microsoft.Hosting.Lifetime) Hosting environment: "Development"
[INF 2022-07-11T20:13:49.6305270+05:30]   
(Microsoft.Hosting.Lifetime) Content root path: "****"
[ERR 2022-07-11T20:14:29.2967601+05:30]   () Testing exception
[ERR 2022-07-11T20:14:29.3735005+05:30]   
(Serilog.AspNetCore.RequestLoggingMiddleware) HTTP "GET" 
"/api/Hospitals" responded 500 in 970.4728 ms

試試這個包serilog-aspnetcore

app.UseSerilogRequestLogging(options =>
{
    // Customize the message template
    options.MessageTemplate = "{RemoteIpAddress} {RequestScheme} {RequestHost} {RequestMethod} {RequestPath} responded {StatusCode} in {Elapsed:0.0000} ms";

    // Emit debug-level events instead of the defaults
    options.GetLevel = (httpContext, elapsed, ex) => LogEventLevel.Debug;

    // Attach additional properties to the request completion event
    options.EnrichDiagnosticContext = (diagnosticContext, httpContext) =>
    {
        diagnosticContext.Set("RequestHost", httpContext.Request.Host.Value);
        diagnosticContext.Set("RequestScheme", httpContext.Request.Scheme);
        diagnosticContext.Set("RemoteIpAddress", httpContext.Connection.RemoteIpAddress);
    };
});

檢查此鏈接,它可能會有所幫助。

添加 IP 日志記錄 #38

看起來您在 using 語句(appsettings.json ln 2)中缺少"Serilog.Enrichers.ClientInfo"

暫無
暫無

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

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