Serilog.Exceptions.SqlServer 8.4.0

前缀已保留
此包具有SemVer 2.0.0包版本:8.4.0+build.694。
dotnet add package Serilog.Exceptions.SqlServer --version 8.4.0                
NuGet\Install-Package Serilog.Exceptions.SqlServer -Version 8.4.0                
建议在Visual Studio的包管理器控制台中运行此命令,因为它使用了NuGet模块的版本Install-Package
<PackageReference Include="Serilog.Exceptions.SqlServer" Version="8.4.0" />                
对于支持PackageReference的 项目,将此XML节点复制到项目文件中以引用此包。
paket add Serilog.Exceptions.SqlServer --version 8.4.0                
#r "nuget: Serilog.Exceptions.SqlServer, 8.4.0"                
#r 指令可用于F# Interactive和Polyglot Notebooks。将此复制到交互式工具或脚本的源代码中引用此包。
// Install Serilog.Exceptions.SqlServer as a Cake Addin
#addin nuget:?package=Serilog.Exceptions.SqlServer&version=8.4.0

// Install Serilog.Exceptions.SqlServer as a Cake Tool
#tool nuget:?package=Serilog.Exceptions.SqlServer&version=8.4.0                

Serilog.Exceptions Banner

Serilog.Exceptions NuGet Package Serilog.Exceptions package in serilog-exceptions feed in Azure Artifacts Serilog.Exceptions NuGet Package Downloads Twitter URL Twitter Follow

Serilog.Exceptions是Serilog的一个插件,用于记录异常详情和不会被Exception.ToString()输出的高级属性。

它做了什么?

您的JSON日志现在将补充详细异常信息和自定义异常属性。以下是一个示例,展示当您使用EntityFramework从日志中记录DbEntityValidationException时会发生什么(这个异常因其具有深度嵌套的自定义属性而名声鹊起,而这些属性并未包含在.ToString()中)。

try
{
    ...
}
catch (DbEntityValidationException exception)
{
    logger.Error(exception, "Hello World");
}

上述代码记录了以下内容

{
  "Timestamp": "2015-12-07T12:26:24.0557671+00:00",
  "Level": "Error",
  "MessageTemplate": "Hello World",
  "RenderedMessage": "Hello World",
  "Exception": "System.Data.Entity.Validation.DbEntityValidationException: Message",
  "Properties": {
    "ExceptionDetail": {
      "EntityValidationErrors": [
        {
          "Entry": null,
          "ValidationErrors": [
            {
              "PropertyName": "PropertyName",
              "ErrorMessage": "PropertyName is Required.",
              "Type": "System.Data.Entity.Validation.DbValidationError"
            }
          ],
          "IsValid": false,
          "Type": "System.Data.Entity.Validation.DbEntityValidationResult"
        }
      ],
      "Message": "Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.",
      "Data": {},
      "InnerException": null,
      "TargetSite": null,
      "StackTrace": null,
      "HelpLink": null,
      "Source": null,
      "HResult": -2146232032,
      "Type": "System.Data.Entity.Validation.DbEntityValidationException"
    },
    "Source": "418169ff-e65f-456e-8b0d-42a0973c3577"
  }
}

入门教程

请使用NuGet包管理器或将以下命令在包控制台窗口中运行,将Serilog.Exceptions NuGet包添加到您的项目中:

dotnet add package Serilog.Exceptions

在设置您的日志记录器时,添加如下WithExceptionDetails()

using Serilog;
using Serilog.Exceptions;

ILogger logger = new LoggerConfiguration()
    .Enrich.WithExceptionDetails()
    .WriteTo.RollingFile(
        new JsonFormatter(renderMessage: true), 
        @"C:\logs\log-{Date}.txt")    
    .CreateLogger();

请确保输出格式化的sink输出丰富的属性。Serilog.Sinks.Console等多个sink默认不执行此操作。您可能需要将{Properties:j}添加到您sink的格式模板中。例如,控制台sink的配置可能如下所示:

.WriteTo.Console(outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj}{NewLine}{Exception} {Properties:j}")

JSON appSettings.json配置

此外,可以将fluent配置设置存储在应用程序配置中,使用Serilog.Settings.Configuration

{
  "Serilog": {
    "Using": [ "Serilog.Exceptions" ],
    "Enrich": [ "WithExceptionDetails" ],
    "WriteTo": [
      { "Name": "Console" }
    ]
  }
}

性能

此库具有自定义代码来处理最常见的异常类型上的额外属性,并且仅在异常不受Serilog.Exceptions内部支持时才回退到使用反射来获取额外信息。反射开销存在,但最小,因为所有昂贵的基于反射的操作都只对每个异常类型执行一次。

更多解构器

Serilog.Exceptions.SqlServer

Serilog.Exceptions.SqlServer NuGet Package Serilog.Exceptions.SqlServer package in serilog-exceptions feed in Azure Artifacts Serilog.Exceptions.SqlServer NuGet Package Downloads

Serilog.Exceptions.SqlServer NuGet包添加到您的项目中,以避免在使用System.Data.SqlClient时对SqlException的基于反射的解构器:

Install-Package Serilog.Exceptions.SqlServer

在设置时添加SqlExceptionDestructurer

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new SqlExceptionDestructurer() }))

Serilog.Exceptions.MsSqlServer

Serilog.Exceptions.MsSqlServer NuGet Package Serilog.Exceptions.MsSqlServer package in serilog-exceptions feed in Azure Artifacts Serilog.Exceptions.MsSqlServer NuGet Package Downloads

Serilog.Exceptions.MsSqlServer NuGet包添加到您的项目中,以避免在使用Microsoft.Data.SqlClient时对SqlException的基于反射的解构器:

Install-Package Serilog.Exceptions.MsSqlServer

在设置时添加SqlExceptionDestructurer

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new SqlExceptionDestructurer() }))

Serilog.Exceptions.EntityFrameworkCore

Serilog.Exceptions.EntityFrameworkCore NuGet Package Serilog.Exceptions.EntityFrameworkCore package in serilog-exceptions feed in Azure Artifacts Serilog.Exceptions.EntityFrameworkCore NuGet Package Downloads

警告:在Serilog.Exceptions的版本早于8.0.0的版本中,如果您在使用EntityFrameworkCore和Serilog.Exceptions时,必须在某些情况下添加此内容,否则整个数据库将被记录!这是因为Entity Framework Core中的异常具有与整个数据库模式链接的属性(参见#100aspnet/EntityFrameworkCore#15214)。Serilog.Exceptions的新版本通过防止属性的实施与分析来避免这个问题,这些属性阻止了它们的执行。

当您在项目中使用EntityFrameworkCore时,将Serilog.Exceptions.EntityFrameworkCore NuGet包添加到您的项目中

Install-Package Serilog.Exceptions.EntityFrameworkCore

在设置时添加DbUpdateExceptionDestructurer

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new DbUpdateExceptionDestructurer() }))

Serilog.Exceptions.Refit

Serilog.Exceptions.Refit NuGet Package Serilog.Exceptions.Refit package in serilog-exceptions feed in Azure Artifacts Serilog.Exceptions.Refit NuGet Package Downloads

Serilog.Exceptions.Refit NuGet包添加到您的项目中以提供有关使用RefitApiException的详细日志记录

Install-Package Serilog.Exceptions.Refit

在设置时添加ApiExceptionDestructurer

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new ApiExceptionDestructurer() }))

根据您的Serilog设置,常见的System.Exception属性可能已经被记录。要跳过这些属性的记录,请使用如下重载构造函数:

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new ApiExceptionDestructurer(destructureCommonExceptionProperties: false) }))

默认配置会记录ApiException的以下属性:

  • Uri
  • StatusCode

此外,还可以记录ApiException.Content属性,如下所述:

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new ApiExceptionDestructurer(destructureHttpContent: true) }))

注意使用此选项,因为HTTP正文可能非常大,并且/或可能包含敏感信息。

Serilog.Exceptions.Grpc

Serilog.Exceptions.Grpc NuGet Package
Serilog.Exceptions.Grpc NuGet Package Downloads

Serilog.Exceptions.Grpc NuGet 包添加到项目中,以避免在使用 Grpc.Net.Client 时对 RpcException 的反射式解构造

Install-Package Serilog.Exceptions.Grpc

在设置过程中添加 RpcExceptionDestructurer

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new RpcExceptionDestructurer() }))

自定义异常解构造器

您可能希望添加对自定义异常解构造器的支持,而不依赖于反射。为此,创建自己的解构造类实现 ExceptionDestructurer(您可以通过这个 实现 ArgumentException ),然后简单地按照如下方式添加:

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithDestructurers(new[] { new MyCustomExceptionDestructurer() }))

如果您编写了一个不包括在此项目中的解构造器(即使是第三方库的),请贡献它。

附加配置

您可以在设置时传递自定义解构造选项来配置解构过程的某些附加属性

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder()
    .WithDefaultDestructurers()
    .WithRootName("Exception"))

当前支持以下选项

  • RootName:将解构的异常保存到的属性名称,默认为 ExceptionDetail
  • Filter:实现 IExceptionPropertyFilter 的对象,在将属性放入解构的异常对象之前有机会过滤这些属性。"属性过滤"部分提供了详细信息。
  • DestructuringDepth:基于反射的递归解构造过程的最大深度。
  • ReflectionBasedDestructurer:默认情况下,基于反射的解构造器被启用,但在需要完全控制解构过程的情况下可以禁用。您必须显式注册所有异常的解构造器。

属性过滤

您可能希望跳过所有或部分异常类的一些属性,而不直接创建或修改自定义解构造器。Serilog.Exceptions 通过筛选器支持此功能。

最常见的用例是需要跳过 StackTraceTargetSite。Serilog 已经报告了它们,因此您可能希望 Serilog.Exceptions 跳过它们以节省空间和处理时间。为此,您只需修改配置中的一行:

.Enrich.WithExceptionDetails(new DestructuringOptionsBuilder().WithFilter(someFilter));

其他场景的过滤也受支持

  • 如果需要过滤其他命名属性集,请使用 WithIgnoreStackTraceAndTargetSiteExceptionFilter
  • 实现自定义的 IExceptionPropertyFilter 以便使用不同的过滤逻辑
  • 使用 CompositeExceptionPropertyFilter 来组合多个筛选器

持续集成

名称 操作系统 状态 历史
Azure Pipelines Ubuntu Azure Pipelines Ubuntu Build Status
Azure Pipelines Mac Azure Pipelines Mac Build Status
Azure Pipelines Windows Azure Pipelines Windows Build Status
Azure Pipelines 总体 Azure Pipelines Overall Build Status Azure DevOps Build History
GitHub Actions Ubuntu、Mac 和 Windows GitHub Actions Status GitHub Actions Build History
AppVeyor Ubuntu、Mac 和 Windows AppVeyor Build Status AppVeyor Build History

贡献和感谢

请查看贡献指南 以获取更多信息。

  • 304NotModified - 添加了 Markdown 语法高亮显示。
  • joelweiss - 添加了 Entity Framework Core 解构造器。
  • krajekJeroenDragt - 为添加过滤以帮助忽略不想记录的异常属性做出了贡献。
  • krajek - 在使用反射解构造器时帮助处理循环依赖。
  • mraming - 对于记录抛出异常的属性做出了贡献。
  • optical - 对于一个巨大的 VS 2017 升级 PR 做出了贡献。
  • Jérémie Bertrand - 对于使 Serilog.Exceptions 与 Mono 兼容做出了贡献。
  • krajek - 编写了一些必不可少的单元测试。
产品 兼容和额外计算的框架版本。
.NET net5.0 兼容。 net5.0-windows 已计算。 net6.0 兼容。 net6.0-android 已计算。 net6.0-ios 已计算。 net6.0-maccatalyst 已计算。 net6.0-macos 已计算。 net6.0-tvos 已计算。 net6.0-windows 已计算。 net7.0 已计算。 net7.0-android 已计算。 net7.0-ios 已计算。 net7.0-maccatalyst 已计算。 net7.0-macos 已计算。 net7.0-tvos 已计算。 net7.0-windows 已计算。 net8.0 已计算。 net8.0-android 已计算。 net8.0-browser 已计算。 net8.0-ios 已计算。 net8.0-maccatalyst 已计算。 net8.0-macos 已计算。 net8.0-tvos 已计算。 net8.0-windows 已计算。
.NET Core netcoreapp1.0 已计算。 netcoreapp1.1 已计算。 netcoreapp2.0 已计算。 netcoreapp2.1 已计算。 netcoreapp2.2 已计算。 netcoreapp3.0 已计算。 netcoreapp3.1 已计算。
.NET Standard netstandard1.3 兼容。 netstandard1.4 已计算。 netstandard1.5 已计算。 netstandard1.6 已计算。 netstandard2.0 兼容。 netstandard2.1 兼容。
.NET Framework net46 已计算。 net461 兼容。 net462 已计算。 net463 已计算。 net47 已计算。 net471 已计算。 net472 兼容。 net48 已计算。 net481 已计算。
MonoAndroid monoandroid 已计算。
MonoMac monomac 已计算。
MonoTouch monotouch 已计算。
Tizen tizen30 已计算。 tizen40 已计算。 tizen60 已计算。
通用Windows平台 uap 已计算。 uap10.0 已计算。
Xamarin.iOS xamarinios 已计算。
Xamarin.Mac xamarinmac 已计算。
Xamarin.TVOS xamarintvos 已计算。
Xamarin.WatchOS xamarinwatchos 已计算。
兼容目标框架
包含目标框架(在包中)
了解更多关于 目标框架.NET 标准 的信息。

NuGet 包 (6)

显示依赖于 Serilog.Exceptions.SqlServer 的前 5 个 NuGet 包

下载
ComplianceAuditSystems.AcabimCommonServices

包描述

FHM.Infrastructure.Core

包描述

Facode.DotNet.Logging

Biblioteca de itens comuns para logs de aplicação para projetos corporativos da FACode

SPLogging.Core

适用于 log database、log file 的使用

Filam.Net5SharedLibrary.WebApis

创建 Filam 软件的应用程序时使用的模板。

GitHub 仓库

该包没有被任何流行的 GitHub 仓库使用。

版本 下载 最后更新
8.4.0 909,216 8/15/2022
8.3.0 41,987 6/30/2022
8.2.0 13,897 5/20/2022
8.1.0 321,786 2/19/2022
8.0.0 229,722 11/9/2021
7.1.0 129,320 9/28/2021
7.0.0 274,745 6/15/2021
6.1.0 132,419 3/12/2021
6.0.0 131,337 11/18/2020
5.7.0 287,250 11/3/2020
5.6.0 151,269 7/9/2020
5.5.0 21,215 6/2/2020
5.4.0 139,585 12/26/2019
5.3.1 243,710 7/11/2019
5.3.0 3,094 6/26/2019