Serilog.Sinks.MSSqlServer 6.6.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.MSSqlServer --version 6.6.0
NuGet\Install-Package Serilog.Sinks.MSSqlServer -Version 6.6.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="6.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.MSSqlServer --version 6.6.0
#r "nuget: Serilog.Sinks.MSSqlServer, 6.6.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Serilog.Sinks.MSSqlServer as a Cake Addin
#addin nuget:?package=Serilog.Sinks.MSSqlServer&version=6.6.0

// Install Serilog.Sinks.MSSqlServer as a Cake Tool
#tool nuget:?package=Serilog.Sinks.MSSqlServer&version=6.6.0

Serilog.Sinks.MSSqlServer Build & Test NuGet

A Serilog sink that writes events to Microsoft SQL Server. This sink will write the log event data to a table and can optionally also store the properties inside an XML or JSON column so they can be queried. Important properties can also be written to their own separate columns.

Package - Serilog.Sinks.MSSqlServer | Minimum Platforms - .NET Framework 4.6.2, .NET 6.0, .NET Standard 2.0

Topics

Quick Start

The most basic minimalistic sink initialization is done like this.

Log.Logger = new LoggerConfiguration()
    .WriteTo
    .MSSqlServer(
        connectionString: "Server=localhost;Database=LogDb;Integrated Security=SSPI;",
        sinkOptions: new MSSqlServerSinkOptions { TableName = "LogEvents" })
    .CreateLogger();

Sample Programs

There is a set of small and simple sample programs provided with the source code in the sample directory. They demonstrate different ways to initialize the sink by code and configuration for different target frameworks.

Sink Configuration

The sink can be configured completely through code, by using configuration files (or other types of configuration providers), a combination of both, or by using the various Serilog configuration packages. There are two configuration considerations: configuring the sink itself, and configuring the table used by the sink. The sink is configured with a typical Serilog WriteTo configuration method (or AuditTo, or similar variations). Settings for the sink are configured using a MSSqlServerSinkOptions object passed to the configuration method. The table is configured with an optional ColumnOptions object passed to the configuration method.

All sink configuration methods accept the following arguments, though not necessarily in this order. Use of named arguments is strongly recommended. Some platform targets have additional arguments.

  • connectionString
  • sinkOptions
  • columnOptions
  • restrictedToMinimumLevel
  • formatProvider
  • logEventFormatter

Basic Arguments

At minimum, connectionString and MSSqlServerSinkOptions.TableName are required. If you are using an external configuration source such as an XML file or JSON file, you can use a named connection string instead of providing the full "raw" connection string.

All properties in the MSSqlServerSinkOptions object are discussed in the MSSqlServerSinkOptions Object topic.

Table configuration with the optional ColumnOptions object is a lengthy subject discussed in the ColumnOptions Object topic and other related topics.

Like other sinks, restrictedToMinimumLevel controls the LogEventLevel messages that are processed by this sink. This parameter is ignored if the property LevelSwitch in the sink options is set.

This is a "periodic batching sink." The sink will queue a certain number of log events before they're actually written to SQL Server as a bulk insert operation. There is also a timeout period so that the batch is always written even if it has not been filled. By default, the batch size is 50 rows and the timeout is 5 seconds. You can change these through by setting the MSSqlServerSinkOptions.BatchPostingLimit and MSSqlServerSinkOptions.BatchPeriod arguments.

Consider increasing the batch size in high-volume logging environments. In one test of a loop writing a single log entry, the default batch size averaged about 14,000 rows per second. Increasing the batch size to 1000 rows increased average write speed to nearly 43,000 rows per second. However, you should also consider the risk-factor. If the client or server crashes, or if the connection goes down, you may lose an entire batch of log entries. You can mitigate this by reducing the timeout. Run performance tests to find the optimal batch size for your production log table definition and log event content, network setup, and server configuration.

Refer to the Serilog Wiki's explanation of Format Providers for details about the formatProvider arguments.

The parameter logEventFormatter can be used to specify a custom renderer implementing ITextFormatter which will be used to generate the contents of the LogEventcolumn. If the parameter is omitted or set to null, the default internal JSON formatter will be used. For more information about custom text formatters refer to the Serilog documentation Custom text formatters.

Platform-Specific Arguments

These additional arguments are accepted when the sink is configured from a library or application that supports the .NET Standard-style Microsoft.Extensions.Configuration packages. They are optional.

  • appConfiguration
  • sinkOptionsSection
  • columnOptionsSection

The full configuration root provided to the appConfiguration argument is only required if you are using a named connection string. The sink needs access to the entire configuration object so that it can locate and read the ConnectionStrings section.

If you define the sink options or the log event table through external configuration, you must provide a reference to the sinkOptionsSection and/or columnOptionsSection via the argument by the same name.

External Configuration and Framework Targets

Because of the way external configuration has been implemented in various .NET frameworks, you should be aware of how your target framework impacts which external configuration options are available. System.Configuration refers to the use of XML-based app.config or web.config files, and Microsoft.Extensions.Configuration (M.E.C) collectively refers to all of the extensions packages that were created as part of .NET Standard and the various compliant frameworks. M.E.C is commonly referred to as "JSON configuration" although the packages support many other configuration sources including environment variables, command lines, Azure Key Vault, XML, and more.

Your Framework TFM Project Types External Configuration
.NET Framework 4.6.2+ net462 app or library System.Configuration
.NET Framework 4.6.2+ net462 app or library Microsoft.Extensions.Configuration
.NET Standard 2.0 netstandard2.0 library only Microsoft.Extensions.Configuration
.NET 6.0+ net6.0 app or library System.Configuration
.NET 6.0+ net6.0 app or library Microsoft.Extensions.Configuration

Although it's possible to use both XML and M.E.C configuration with certain frameworks, this is not supported, unintended consequences are possible, and a warning will be emitted to SelfLog. If you actually require multiple configuration sources, the M.E.C builder-pattern is designed to support this, and your syntax will be consistent across configuration sources.

Code-Only (any .NET target)

All sink features are configurable from code. Here is a typical example that works the same way for any .NET target. This example configures the sink itself as well as table features.

var logDB = @"Server=...";
var sinkOpts = new MSSqlServerSinkOptions();
sinkOpts.TableName = "Logs";
var columnOpts = new ColumnOptions();
columnOpts.Store.Remove(StandardColumn.Properties);
columnOpts.Store.Add(StandardColumn.LogEvent);
columnOpts.LogEvent.DataLength = 2048;
columnOpts.PrimaryKey = columnOpts.TimeStamp;
columnOpts.TimeStamp.NonClusteredIndex = true;

var log = new LoggerConfiguration()
    .WriteTo.MSSqlServer(
        connectionString: logDB,
        sinkOptions: sinkOpts,
        columnOptions: columnOpts
    ).CreateLogger();

Code + Microsoft.Extensions.Configuration

Projects can build (or inject) a configuration object using Microsoft.Extensions.Configuration and pass it to the sink's configuration method. If provided, the settings of MSSqlServerSinkOptions and ColumnOptions objects created in code are treated as a baseline which is then updated from the external configuration data. See the External Configuration Syntax topic for details.

var appSettings = new ConfigurationBuilder()
    .SetBasePath(Directory.GetCurrentDirectory())
    .AddJsonFile("appsettings.json")
    .Build();

var logDB = @"Server=...";
var sinkOpts = new MSSqlServerSinkOptions { TableName = "Logs" };
var columnOpts = new ColumnOptions();

var log = new LoggerConfiguration()
    .WriteTo.MSSqlServer(
        connectionString: logDB,
        sinkOptions: sinkOpts,
        columnOptions: columnOpts,
        appConfiguration: appSettings
    ).CreateLogger();

Code + System.Configuration

Projects can load MSSqlServerSinkOptions and ColumnOptions objects from an XML configuration file such as app.config or web.config. The sink configuration method automatically checks ConfigurationManager, so there is no code to show, and no additional packages are required. See the External Configuration Syntax topic for details.

External using Serilog.Settings.Configuration

Requires configuration package version 3.0.0 or newer.

.NET Standard projects can call ReadFrom.Configuration() to configure Serilog using the Serilog.Settings.Configuration package. This will apply configuration arguments from all application configuration sources (not only appsettings.json as shown here, but any other valid IConfiguration source). This package can configure the sink itself with MSSqlServerSinkOptions as well as ColumnOptions table features. See the External Configuration Syntax topic for details.

External using Serilog.Settings.AppSettings

Projects can configure the sink from XML configuration by calling ReadFrom.AppSettings() using the Serilog.Settings.AppSettings package. This will apply configuration arguments from the project's app.config or web.config file. This is independent of configuring MSSqlServerSinkOptions or ColumnOptions from external XML files. See the External Configuration Syntax topic for details.

Audit Sink Configuration

A Serilog audit sink writes log events which are of such importance that they must succeed, and that verification of a successful write is more important than write performance. Unlike the regular sink, an audit sink does not fail silently -- it can throw exceptions. You should wrap audit logging output in a try/catch block. The usual example is bank account withdrawal events -- a bank would certainly not want to allow a failure to record those transactions to fail silently.

The constructor accepts most of the same arguments, and like other Serilog audit sinks, you configure one by using AuditTo instead of WriteTo.

  • connectionString
  • sinkOptions
  • columnOptions
  • formatProvider
  • logEventFormatter

The restrictedToMinimumLevel parameter is not available because all events written to an audit sink are required to succeed.

The MSSqlServerSinkOptions.BatchPostingLimit and MSSqlServerSinkOptions.BatchPeriod parameters are ignored because the audit sink writes log events immediately.

For M.E.C-compatible projects, appConfiguration, sinkOptionsSection and columnOptionsSection arguments are also provided, just as they are with the non-audit configuration extensions.

Table Definition

If you don't use the auto-table-creation feature, you'll need to create a log event table in your database. In particular, give careful consideration to whether you need the Id column (options and performance impacts are discussed in the Standard Columns topic). The table definition shown below reflects the default configuration using auto-table-creation without changing any sink options. Many other variations are possible. Refer to the ColumnOptions Object topic to understand how the various configuration features relate to the table definition.

IMPORTANT: If you create your log event table ahead of time, the sink configuration must exactly match that table, or errors are likely to occur.

CREATE TABLE [Logs] (

   [Id] int IDENTITY(1,1) NOT NULL,
   [Message] nvarchar(max) NULL,
   [MessageTemplate] nvarchar(max) NULL,
   [Level] nvarchar(128) NULL,
   [TimeStamp] datetime NOT NULL,
   [Exception] nvarchar(max) NULL,
   [Properties] nvarchar(max) NULL

   CONSTRAINT [PK_Logs] PRIMARY KEY CLUSTERED ([Id] ASC)
);

Permissions

At a minimum, writing log entries requires SELECT and INSERT permissions for the log table. (SELECT is required because the sink's batching behavior uses bulk inserts which reads the schema before the write operations begin).

SQL permissions are a very complex subject. Here is an example of one possible solution (valid for SQL 2012 or later):

CREATE ROLE [SerilogAutoCreate];
GRANT SELECT ON sys.tables TO [SerilogAutoCreate];
GRANT SELECT ON sys.schemas TO [SerilogAutoCreate];
GRANT ALTER ON SCHEMA::[dbo] TO [SerilogAutoCreate]
GRANT CREATE TABLE ON DATABASE::[SerilogTest] TO [SerilogAutoCreate];

CREATE ROLE [SerilogWriter];
GRANT SELECT TO [SerilogWriter];
GRANT INSERT TO [SerilogWriter];

CREATE LOGIN [Serilog] WITH PASSWORD = 'password';

CREATE USER [Serilog] FOR LOGIN [Serilog] WITH DEFAULT_SCHEMA = dbo;
GRANT CONNECT TO [Serilog];

ALTER ROLE [SerilogAutoCreate] ADD MEMBER [Serilog];
ALTER ROLE [SerilogWriter] ADD MEMBER [Serilog];

This creates a SQL login named Serilog, a database user named Serilog, and assigned to that user are the roles SerilogAutoCreate and SerilogWriter. As the name suggests, the SerilogAutoCreate role is not needed if you create the database ahead of time, which is the recommended course of action if you're concerned about security at this level.

Ideally the SerilogWriter role would be restricted to the log table only, and that table has to already exist to use table-specific GRANT statements, so that's another reason that you probably don't want to use auto-create if you're concerned about log security. Table-level restrictions would look like this (assuming you name your log table SecuredLog, of course):

GRANT SELECT ON [dbo].[SecuredLog] TO [SerilogWriter];
GRANT INSERT ON [dbo].[SecuredLog] TO [SerilogWriter];

There are many possible variations. For example, you could also create a logging-specific schema and restrict access that way.

MSSqlServerSinkOptions Object

Basic settings of the sink are configured using the properties in a MSSqlServerSinkOptions object:

  • TableName
  • SchemaName
  • AutoCreateSqlDatabase
  • AutoCreateSqlTable
  • EnlistInTransaction
  • BatchPostingLimit
  • BatchPeriod
  • EagerlyEmitFirstEvent
  • LevelSwitch
  • UseSqlBulkCopy

TableName

A required parameter specifying the name of the table used to write the log events.

SchemaName

An optional parameter specifiying the database schema where the log events table is located. It defaults to "dbo".

AutoCreateSqlDatabase

A flag specifiying if the log events database should be created if it does not exist. It defaults to false. If this is set to true the property AutoCreateSqlTable should also be set to true.

AutoCreateSqlTable

A flag specifiying if the log events table should be created if it does not exist. It defaults to false.

EnlistInTransaction

A flag to make logging SQL commands take part in ambient transactions. It defaults to false. Logging operations could be affected from surrounding TransactionScope's in the code, leading to log data being removed on a transaction rollback. This is by default prevented by the sink adding Enlist=false to the ConnectionString that is passed. This option can be used to change this behavior so that Enlist=true is added instead (which is the default for SQL connections) and logging commands might be part of transactions. Only change this option to true if you have a good reason and really know what you are doing!

BatchPostingLimit

Specifies a maximum number of log events that the non-audit sink writes per batch. The default is 50. This setting is not used by the audit sink as it writes each event immediately and not in a batched manner.

BatchPeriod

Specifies the interval in which the non-audit sink writes a batch of log events to the database. It defaults to 5 seconds. This setting is not used by the audit sink as it writes each event immediately and not in a batched manner.

EagerlyEmitFirstEvent

A Flag to eagerly write a batch to the database containing the first received event regardless of BatchPostingLimit or BatchPeriod. It defaults to true. This setting is not used by the audit sink as it writes each event immediately and not in a batched manner.

LevelSwitch

A switch allowing the pass-through minimum level to be changed at runtime. If this is set, the parameter restrictedToMinimumLevel in the sink configuration method is ignored.

UseSqlBulkCopy

A flag to use SqlBulkCopy instead of individual INSERT statements when writing log events. The default is true. This setting is not used by the audit sink as it always uses INSERT statements to write events.

ColumnOptions Object

Features of the log table are defined by changing properties on a ColumnOptions object:

  • Store
  • PrimaryKey
  • ClusteredColumnstoreIndex
  • DisableTriggers
  • AdditionalColumns

Store

This is a list of columns that have special handling when a log event is being written. These are explained in the Standard Columns topic. Only the Standard Columns which are in the log table should be present in the Store collection. This is a List<> of StandardColumn enumeration members, so you can simply Add or Remove columns to change the list. The order of appearance does not matter. The ColumnOptions object also has a property for each individual Standard Column providing access to column-specific settings. The properties match the Standard Column names (Id, Message, etc.) These are discussed in the documentation for each Standard Column.

PrimaryKey

By default, the Id Standard Column is the table's primary key. You can set this property to any other column (either Standard Columns or custom columns you define; see the Custom Property Columns topic). SQL Server requires primary key indexes to always be NOT NULL so the column-level AllowNull property will be overridden if set to true.

The primary key is optional; set this property to null to create a heap table with no primary key.

NOTE: If you do not set the NonClusteredIndex property on the primary key column to true, the primary key constraint will be created as a clustered index. Clustered indexing is the default for backwards-compatibility reasons, but generally speaking this is not the best option for logging purposes (applications rarely emit fully unique properties, and using the unique auto-incrementing Id column as a primary key isn't particularly useful for query purposes).

ClusteredColumnstoreIndex

Setting this to true changes the table to the clustered columnstore index (CCI) format. A complete discussion of CCI is beyond the scope of this documentation, but generally it uses high compression to dramatically improve search speeds. It is not compatible with a table primary key or a non-columnstore clustered index, and supporting (max) length character-data columns requires SQL 2017 or newer.

DisableTriggers

Disabling triggers can significantly improve batch-write performance. Only applies when SqlBulkCopy is used.

AdditionalColumns

This is a Collection<> of SqlColumn objects that you create to define custom columns in the log event table. Refer to the Custom Property Columns topic for more information.

SqlColumn Objects

Each Standard Column in the ColumnOptions.Store list and any custom columns you add to the AdditionalColumns collection are SqlColumn objects with the following properties:

  • ColumnName
  • PropertyName
  • DataType
  • AllowNull
  • DataLength
  • NonClusteredIndex

ColumnName

Any valid SQL column name can be used. Standard Columns have default names assigned but these can be changed without affecting their special handling.

PropertyName

The optional name of a Serilog property to use as the value for a custom column. If not provided, the property used is the one that has the same name as the specified ColumnName. It applies only to custom columns defined in AdditionalColumns and is ignored for standard columns.

PropertyName can contain a simple property name like SomeProperty but it can also be used to hierachically reference sub-properties with expressions like SomeProperty.SomeSubProperty.SomeThirdLevelProperty. This can be used to easily bind additional columns to specific sub-properties following the paradigm of structured logging. Please be aware that collections are not supported. This means expressions like SomeProperty.SomeArray[2] will not work.

DataType

This property can be set to nearly any value in the System.Data.SqlDbType enumeration. Unlike previous versions of this sink, SQL column types are fully supported end-to-end, including auto-table-creation. Earlier limitations imposed by the use of the .NET DataColumn object no longer apply. Most of the Standard Columns only support a limited subset of the SQL column types (and often just one type). Some of the special-case SQL column types are excluded such as timestamp and udt, and deprecated types like text and image are excluded. These are the supported SQL column data types:

  • bigint
  • bit
  • char
  • date
  • datetime
  • datetime2
  • datetimeoffset
  • decimal
  • float
  • int
  • money
  • nchar
  • nvarchar
  • real
  • smalldatetime
  • smallint
  • smallmoney
  • time
  • tinyint
  • uniqueidentifier
  • varchar
  • xml

Numeric types use the default precision and scale. For numeric types, you are responsible for ensuring the values you write do not exceed the min/max values of the underlying SQL column data types. For example, the SQL decimal type defaults to 18-digit precision (and scale 0) meaning the maximum value is 10<sup>18</sup>-1, or 999,999,999,999,999,999, whereas the .NET decimal type has a much higher maximum value of 79,228,162,514,264,337,593,543,950,335.

AllowNull

Determines whether or not the column can store SQL NULL values. Some of the other features like PrimaryKey have related restrictions, and some of the Standard Columns impose restrictions (for example, the Id column never allows nulls).

DataLength

For character-data and binary columns, this defines the column size (or maximum size if variable-length). The value -1 indicates (max) length and is the property's default. If the column data type doesn't support this, the setting is ignored. Note that clustered columnstore indexing is incompatible with (max) length columns prior to SQL 2017.

Supported SQL column data types that use this property:

  • char
  • nchar
  • nvarchar
  • varchar

NonClusteredIndex

Any individual column can be defined as a non-clustered index, including the table primary key. Use this with caution, indexing carries a relatively high write-throughput penalty. One way to mitigate this is to keep non-clustered indexes offline and use batch reindexing on a scheduled basis.

Standard Columns

By default (and consistent with the SQL DDL to create a table shown earlier) these columns are included in a new ColumnOptions.Store list:

  • StandardColumn.Id
  • StandardColumn.Message
  • StandardColumn.MessageTemplate
  • StandardColumn.Level
  • StandardColumn.TimeStamp
  • StandardColumn.Exception
  • StandardColumn.Properties

There are the following additional standard columns which are not included by default (for backwards-compatibility reasons):

  • StandardColumn.LogEvent
  • StandardColumn.TraceId
  • StandardColumn.SpanId

You can change this list as long as the underlying table definition is consistent:

// we don't need XML data
columnOptions.Store.Remove(StandardColumn.Properties);

// we do want JSON data and OpenTelemetry
columnOptions.Store.Add(StandardColumn.LogEvent);
columnOptions.Store.Add(StandardColumn.TraceId);
columnOptions.Store.Add(StandardColumn.SpanId);

In addition to any special properties described below, each Standard Column also has the usual column properties like ColumnName as described in the topic SqlColumn Objects.

Id

The Id column is an optional table identity column. It defaults to the int data type but can also be configured as bigint. Example how to change the data type to bigint:

var colOptions = new Serilog.Sinks.MSSqlServer.ColumnOptions();
colOptions.Id.DataType = System.Data.SqlDbType.BigInt;

Log.Logger = new LoggerConfiguration().WriteTo.MSSqlServer(columnOptions: colOptions)
    // ...

The AllowNull property is always false. If it is included in the table, it must be an auto-incrementing unique identity column and is automatically configured and auto-created as such.

Previous versions of this sink assumed the Id column was always present as an int identity primary key with a clustered index. Other configurations are possible and probably preferable, however this is still the default for backwards-compatibility reasons. Carefully consider your anticipated logging volume and query requirements. The default setting is not ideal in real-world scenarios since a clustered index is primarily of use when the key is used for sorting or range searches. This is rarely the case for the Id column.

No Id column: If you eliminate the column completely, the log table is stored as an unorded heap (as long as you don't define a different clustered primary key, which is not recommended). This is the ideal write-speed scenario for logging, however any non-clustered indexes you add will slightly degrade write performance.

Non-clustered primary key: You can also retain the column as an identity primary key, but using a non-clustered index. The log is still stored as an unordered heap, but writing a non-clustered index is slightly faster. Non-clustered indexes on other columns will reference the Id primary key. However, read performance will be slightly degraded since it requires two reads (searching the non-clustered index, then dereferencing the heap row from the Id).

BigInt data type: For very large log tables, if you absolutely require an identity column, you may wish to define the Id as the SQL bigint datatype. This 8-byte integer (equivalent to a c# long integer) will permit a maximum identity value of 9,223,372,036,854,775,807. This will slightly degrade both read and write performance.

Message

This column stores the formatted output (property placeholders are replaced with property values). It defaults to nvarchar(max). The DataType property can only be set to character-storage types.

In case DataLength is set to a specific value different from -1, any message longer than that length will be effectively truncated to that size. Example: DataLength is set to 15 and the message is "this is a very long message" (without the quotes), the truncated text stored in the database will be: "this is a ve..." (again without quotes).

MessageTemplate

This column stores the log event message with the property placeholders. It defaults to nvarchar(max). The DataType property can only be set to character-storage types.

If DataLength is set to a value different to -1 longer text will be truncated. See Message column for details.

Level

This column stores the event level (Error, Information, etc.). For backwards-compatibility reasons it defaults to a length of 128 characters, but 12 characters is recommended. Alternately, the StoreAsEnum property can be set to true which causes the underlying level enum integer value to be stored as a SQL tinyint column. The DataType property can only be set to nvarchar or tinyint. Setting the DataType to tinyint is identical to setting StoreAsEnum to true.

TimeStamp

This column stores the time the log event was sent to Serilog as a SQL datetime (default), datetime2 or datetimeoffset type. If datetime2 or datetimeoffset should be used, this can be configured as follows.

var columnOptions = new ColumnOptions();
columnOptions.TimeStamp.DataType = SqlDbType.DateTimeOffset;
var columnOptions = new ColumnOptions();
columnOptions.TimeStamp.DataType = SqlDbType.DateTime2;

Please be aware that you have to configure the sink for datetimeoffset if the used logging database table has a TimeStamp column of type datetimeoffset. If the underlying database uses datetime2 for the TimeStamp column, the sink must be configured to use datetime2. On the other hand you must not configure for datetimeoffset if the TimeStamp column is of type datetime or datetime2. Failing to configure the data type accordingly can result in log table entries with wrong timezone offsets or no log entries being created at all due to exceptions during logging.

While TimeStamp may appear to be a good candidate as a clustered primary key, even relatively low-volume logging can emit identical timestamps forcing SQL Server to add a "uniqueifier" value behind the scenes (effectively an auto-incrementing identity-like integer). For frequent timestamp range-searching and sorting, a non-clustered index is better.

When the ConvertToUtc property is set to true, the time stamp is adjusted to the UTC standard. Normally the time stamp value reflects the local time of the machine issuing the log event, including the current timezone information. For example, if the event is written at 07:00 Eastern time, the Eastern timezone is +4:00 relative to UTC, so after UTC conversion the time stamp will be 11:00. Offset is stored as +0:00 but this is not the GMT time zone because UTC does not use offsets (by definition). To state this another way, the timezone is discarded and unrecoverable. UTC is a representation of the date and time exclusive of timezone information. This makes it easy to reference time stamps written from different or changing timezones.

Exception

When an exception is logged as part of the log event, the exception message is stored here automatically. The DataType must be nvarchar.

Similar to the columns Message and MessageTemplate, setting DataLength to a specific value different from -1 will effectively truncate any exception message to the stated length in DataLength. See Message column for details.

Properties

This column stores log event property values as XML. Typically you will use either this column or the JSON-based LogEvent column, but not both.

The DataType defaults to nvarchar and it is strongly recommended that this not be changed, but the SQL xml type is also supported. Using the xml type causes SQL server to convert the string data to a storage-efficent representation which can be searched much more quickly, but there is a measurable CPU-overhead cost. Test carefully with realistic workloads before committing to the xml data type.

The ExcludeAdditionalProperties setting is described in the Custom Property Columns topic.

Names of elements can be controlled by the RootElementName, PropertyElementName, ItemElementName, DictionaryElementName, SequenceElementName, StructureElementName and UsePropertyKeyAsElementName options.

The UsePropertyKeyAsElementName option, if set to true, will use the property key as the element name instead of "property" for the name with the key as an attribute.

If OmitDictionaryContainerElement, OmitSequenceContainerElement or OmitStructureContainerElement are set then the "dictionary", "sequence" or "structure" container elements will be omitted and only child elements are included.

If OmitElementIfEmpty is set then if a property is empty, it will not be serialized.

LogEvent

This column stores log event property values as JSON. Typically you will use either this column or the XML-based Properties column, but not both. This column's DataType must always be nvarchar.

By default this column is not used unless it is added to the ColumnOptions.Store property as documented above.

The content of this column is rendered as JSON by default or with a custom ITextFormatter passed by the caller as parameter logEventFormatter. Details can be found in Sink Configuration.

TraceId and SpanId

These two columns store the OpenTelemetry TraceId and SpanId log event properties which are documented here. The DataType of these columns must be nvarchar or varchar.

By default these columns are not used unless they are added to the ColumnOptions.Store property as documented above.

Custom Property Columns

By default, any log event properties you include in your log statements will be saved to the XML Properties column or the JSON LogEvent column. But they can also be stored in their own individual columns via the AdditionalColumns collection. This adds overhead to write operations but is very useful for frequently-queried properties. Only ColumnName is required; the default configuration is varchar(max).

If you specify a DataLength other than -1 on a column of character data types (NVarChar, VarChar, Char, NChar) longer text will be truncated to the specified length. See Message column for details.

var columnOptions = new ColumnOptions
{
    AdditionalColumns = new Collection<SqlColumn>
    {
        new SqlColumn
            {ColumnName = "EnvironmentUserName", PropertyName = "UserName", DataType = SqlDbType.NVarChar, DataLength = 64},

        new SqlColumn
            {ColumnName = "UserId", DataType = SqlDbType.BigInt, NonClusteredIndex = true},

        new SqlColumn
            {ColumnName = "RequestUri", DataType = SqlDbType.NVarChar, DataLength = -1, AllowNull = false},
    }
};

var log = new LoggerConfiguration()
    .WriteTo.MSSqlServer(@"Server=...",
        sinkOptions: new MSSqlServerSinkOptions { TableName = "Logs" },
        columnOptions: columnOptions)
    .CreateLogger();

In this example, when a log event contains any of the properties UserName, UserId, and RequestUri, the property values would be written to the corresponding columns. The property names must match exactly (case-insensitive). In the case of UserName, that value would be written to the column named EnvironmentUserName.

Unlike previous versions of the sink, Standard Column names are not reserved. If you remove the Id Standard Column from the ColumnOptions.Store list, you are free to create a new custom column called Id which the sink will treat like any other custom column fully under your control.

Note the use of the SqlDbType enumerations for specifying DataType. Unlike previous versions of the sink, .NET System data types and DataColumn objects are no longer used for custom column definition.

Excluding redundant data

By default, properties matching a custom column will still be included in the data saved to the XML Properties or JSON LogEvent column. This is consistent with the idea behind structured logging, and makes it easier to convert the log data to another document-data storage platform later, if desired.

However, the properties being saved in their own columns can be excluded from these catch-all columns. Use the columnOptions.Properties.ExcludeAdditionalProperties parameter to exclude the redundant properties from the Properties XML column, or columnOptions.LogEvent.ExcludeAdditionalProperties if you're using the JSON LogEvent column.

Standard Columns are always excluded from the XML Properties column but Standard Columns are included in the JSON data for backwards-compatibility reasons. They can be excluded from the JSON LogEvent column with columnOptions.LogEvent.ExcludeStandardColumns.

External Configuration Syntax

Projects targeting frameworks which are compatible with System.Configuration automatically have support for XML-based configuration (either app.config or web.config) of a MSSqlServerSinkOptions parameters and a ColumnOptions table definition, and the Serilog.Settings.AppSettings package adds XML-based configuration of other direct sink arguments (like customFormatter or restrictedToMinimumLevel).

Projects targeting frameworks which are compatible with Microsoft.Extensions.Configuration can apply configuration-driven sink setup and MSSqlServerSinkOptions or ColumnOptions settings using the Serilog.Settings.Configuration package or by supplying the appropriate arguments through code.

All properties of the MSSqlServerSinkOptions class are configurable and almost all of the ColumnOptions class except the Properties.PropertyFilter predicate expression, and all elements and lists shown are optional. In most cases configuration key names match the class property names, but there are some exceptions. For example, because PrimaryKey is a SqlColumn object reference when configured through code, external configuration uses a primaryKeyColumnName setting to identify the primary key by name.

Custom columns and the stand-alone Standard Column entries all support the same general column properties (ColumnName, DataType, etc) listed in the SqlColumn Objects topic. The following sections documenting configuration syntax omit many of these properties for brevity.

If you combine external configuration with configuration through code, external configuration changes will be applied in addition to MSSqlServerSinkOptions and ColumnOptions objects you provide through code (external configuration "overwrites" properties defined in configuration, but properties only defined through code are preserved).

IMPORTANT: Some of the following examples do not reflect real-world configurations that can be copy-pasted as-is. Some settings or properties shown are mutually exclusive and are listed below for documentation purposes only.

JSON (Microsoft.Extensions.Configuration)

Keys and values are not case-sensitive. This is an example of configuring the sink arguments.

{
  "Serilog": {
    "Using":  ["Serilog.Sinks.MSSqlServer"],
    "MinimumLevel": "Debug",
    "WriteTo": [
      { "Name": "MSSqlServer",
        "Args": {
            "connectionString": "NamedConnectionString",
            "sinkOptionsSection": {
                "tableName": "Logs",
                "schemaName": "EventLogging",
                "autoCreateSqlTable": true,
                "batchPostingLimit": 1000,
                "period": "0.00:00:30"
            },
            "restrictedToMinimumLevel": "Warning",
            "columnOptionsSection": { . . . }
        }
      }
    ]
  }
}

As the name suggests, columnOptionSection is an entire configuration section in its own right. The AdditionalColumns collection can also be populated from a key named customColumns (not shown here) for backwards-compatibility reasons.

"columnOptionsSection": {
    "disableTriggers": true,
    "clusteredColumnstoreIndex": false,
    "primaryKeyColumnName": "Id",
    "addStandardColumns": [ "LogEvent", "TraceId", "SpanId" ],
    "removeStandardColumns": [ "MessageTemplate", "Properties" ],
    "additionalColumns": [
        { "ColumnName": "EventType", "DataType": "int", "AllowNull": false },
        { "ColumnName": "Release", "DataType": "varchar", "DataLength": 32 },
        { "ColumnName": "EnvironmentUserName", "PropertyName": "UserName", "DataType": "varchar", "DataLength": 50 },
        { "ColumnName": "All_SqlColumn_Defaults",
            "DataType": "varchar",
            "AllowNull": true,
            "DataLength": -1,
            "NonClusteredIndex": false
        }
    ],
    "id": { "nonClusteredIndex": true },
    "level": { "columnName": "Severity", "storeAsEnum": false },
    "properties": {
        "columnName": "Properties",
        "excludeAdditionalProperties": true,
        "dictionaryElementName": "dict",
        "itemElementName": "item",
        "omitDictionaryContainerElement": false,
        "omitSequenceContainerElement": false,
        "omitStructureContainerElement": false,
        "omitElementIfEmpty": true,
        "propertyElementName": "prop",
        "rootElementName": "root",
        "sequenceElementName": "seq",
        "structureElementName": "struct",
        "usePropertyKeyAsElementName": false
    },
    "timeStamp": { "columnName": "Timestamp", "convertToUtc": true },
    "logEvent": {
        "excludeAdditionalProperties": true,
        "excludeStandardColumns": true
    },
    "message": { "columnName": "Msg" },
    "exception": { "columnName": "Ex" },
    "messageTemplate": { "columnName": "Template" }
}

XML ColumnOptions (System.Configuration)

Keys and values are case-sensitive. Case must match exactly as shown below.

  <configSections>
    <section name="MSSqlServerSettingsSection"
             type="Serilog.Configuration.MSSqlServerConfigurationSection, Serilog.Sinks.MSSqlServer"/>
  </configSections>
  <MSSqlServerSettingsSection DisableTriggers="false"
                       ClusteredColumnstoreIndex="false"
                       PrimaryKeyColumnName="Id">

    
    <TableName Value="Logs"/>
    <SchemaName Value="EventLogging"/>
    <AutoCreateSqlTable Value="true"/>
    <BatchPostingLimit Value="150"/>
    <BatchPeriod Value="00:00:15"/>

    
    <AddStandardColumns>
        <add Name="LogEvent"/>
        <add Name="TraceId"/>
        <add Name="SpanId"/>
    </AddStandardColumns>
    <RemoveStandardColumns>
        <remove Name="Properties"/>
    </RemoveStandardColumns>
    <Columns>
      <add ColumnName="EventType" DataType="int"/>
      <add ColumnName="EnvironmentUserName"
           PropertyName="UserName"
           DataType="varchar"
           DataLength="50" />
      <add ColumnName="Release"
           DataType="varchar"
           DataLength="64"
           AllowNull="true"
           NonClusteredIndex="false"/>
    </Columns>
    <Exception ColumnName="Ex" DataLength="512"/>
    <Id NonClusteredIndex="true"/>
    <Level ColumnName="Severity" StoreAsEnum="true"/>
    <LogEvent ExcludeAdditionalProperties="true"
              ExcludeStandardColumns="true"/>
    <Message DataLength="1024"/>
    <MessageTemplate DataLength="1536"/>
    <Properties DataType="xml"
                ExcludeAdditionalProperties="true"
                DictionaryElementName="dict"
                ItemElementName="item"
                OmitDictionaryContainerElement="false"
                OmitSequenceContainerElement="false"
                OmitStructureContainerElement="false"
                OmitElementIfEmpty="true"
                PropertyElementName="prop"
                RootElementName="root"
                SequenceElementName="seq"
                StructureElementName="struct"
                UsePropertyKeyAsElementName="false"/>
    <TimeStamp ConvertToUtc="true"/>
  </MSSqlServerSettingsSection>

XML Sink (Serilog.Settings.AppSettings)

Refer to the Serilog.Settings.AppSettings package documentation for complete details about sink configuration. This is an example of setting some of the configuration parameters for this sink.

<add key="serilog:using:MSSqlServer" value="Serilog.Sinks.MSSqlServer" />
<add key="serilog:write-to:MSSqlServer.connectionString" value="EventLogDB"/>
<add key="serilog:write-to:MSSqlServer.tableName" value="Logs"/>
<add key="serilog:write-to:MSSqlServer.autoCreateSqlTable" value="true"/>

Troubleshooting

This is a relatively complex sink, and there are certain common problems which you should investigate before opening a new issue to ask for help. If you do open a new issue, please be sure to tell us all of the Serilog packages you are using and which versions, show us your real configuration code and any external configuration sources, and a simple example of code which reproduces the problem. If you're getting an error message, please include the exact message.

Always check SelfLog first

After configuration is complete, this sink runs through a number of checks to ensure consistency. Some configuration issues result in an exception, but others may only generate warnings through Serilog's SelfLog feature. At runtime, exceptions are silently reported through SelfLog. Refer to Debugging and Diagnostics in the main Serilog documentation to enable SelfLog output.

Always call Log.CloseAndFlush

Any Serilog application should always call Log.CloseAndFlush before shutting down. This is especially important in sinks like this one. It is a "periodic batching sink" which means log event records are written in batches for performance reasons. Calling Log.CloseAndFlush should guarantee any batch in memory will be written to the database (but read the Visual Studio note below). You may wish to put the Log.CloseAndFlush call in a finally block in console-driven apps where a Main loop controls the overall startup and shutdown process. Refer to the Serilog.AspNetCore sample code for an example. More exotic scenarios like dependency injection may warrant hooking the ProcessExit event when the logger is registered as a singleton:

AppDomain.CurrentDomain.ProcessExit += (s, e) => Log.CloseAndFlush();

Consider batched sink SqlBulkCopy behavior

If you initialize the sink with WriteTo then it uses a batched sink semantics. This means that it does not directly issue an SQL command to the database for each log call, but it collectes log events in a buffer and later asynchronously writes a bulk of them to the database using SqlBulkCopy. If SqlBulkCopy fails to write a single row of the batch to the database, the whole batch will be lost. Unfortunately it is not easily possible (and probably only with a significant performance impact) to find out what lines of the batch caused problems. Therefore the sink cannot easily retry the operation with the problem lines removed. Typical problems can be that data (like the log message) exceeds the field length in the database or fields which cannot be null are null in the log event. Keep this in mind when using the batched version of the sink and avoid log events to be created with data that is invalid according to your database schema. Use a wrapper class or Serilog Enrichers to validate and correct the log event data before it gets written to the database.

Test outside of Visual Studio

When you exit an application running in debug mode under Visual Studio, normal shutdown processes may be interrupted. Visual Studio issues a nearly-instant process kill command when it decides you're done debugging. This is a particularly common problem with ASP.NET and ASP.NET Core applications, in which Visual Studio instantly terminates the application as soon as the browser is closed. Even finally blocks usually fail to execute. If you aren't seeing your last few events written, try testing your application outside of Visual Studio.

Try a dev package

If you're reading about a feature that doesn't seem to work, check whether you're reading the docs for the main branch or the dev branch -- most Serilog repositories are configured to use the dev branch by default. If you see something interesting only described by the dev branch documentation, you'll have to reference a dev-versioned package. The repository automatically generates a new dev package whenever code-related changes are merged.

Are you really using this sink?

Please check your NuGet references and confirm you are specifically referencing Serilog.Sinks.MSSqlServer. In the early days of .NET Core, there was a popular Core-specific fork of this sink, but the documentation and NuGet project URLs pointed here. Today the package is marked deprecated, but we continue to see some confusion around this.

.NET Framework apps must reference Microsoft.Data.SqlClient

If you are using the sink in a .NET Framework app, make sure to add a nuget package reference to Microsoft.Data.SqlClient in your app project. This is necessary due to a bug in SqlClient which can lead to exceptions about missing Microsoft assemblies. Details can be found in issue 283 and issue 208.

Querying Property Data

Extracting and querying the property column directly can be helpful when looking for specific log sequences. SQL Server has query syntax supporting columns that store either XML or JSON data.

LogEvent JSON

This capability requires SQL 2016 or newer. Given the following JSON properties:

{
  "Properties": {
    "Action": "GetUsers",
    "Controller": "UserController"
  }
}

The following query will extract the Action property and restrict the query based on the Controller property using SQL Server's built-in JSON path support.

SELECT
  [Message], [TimeStamp], [Exception],
  JSON_VALUE(LogEvent, '$.Properties.Action') AS Action
FROM [Logs]
WHERE
  JSON_VALUE(LogEvent, '$.Properties.Controller') = 'UserController'

Properties XML

Given the following XML properties:

<properties>
  <property key="Action">GetUsers</property>
  <property key="Controller">UserController</property>
</properties>

The following query will extract the Action property and restrict the query based on the Controller property using SQL Server's built-in XQuery support.

SELECT
  [Message], [TimeStamp], [Exception],
  [Properties].value('(//property[@key="Action"]/node())[1]', 'nvarchar(max)') AS Action
FROM [Logs]
WHERE
  [Properties].value('(//property[@key="Controller"]/node())[1]', 'nvarchar(max)') = 'UserController'

Breaking Changes

Release 6.0.0

Microsoft.Data.SqlClient was upgraded to >4.0.0 which introduces a breaking change regarding connection strings. If your SQL Server does not use encryption you have to explicitly specify this in the connection string by adding Encrypt=False. Otherwise the connection will fail with a SqlException. Refer to the SqlClient documentation for details.

Deprecated Features

Feature Notes
UseAzureManagedIdentity Since the update of Microsoft.Data.SqlClient in sink release 5.8.0 Active Directory auth capabilities of SqlClient can be used. You can specify one of the supported AD authentication methods, which include Azure Managed Identities, directly in the connection string. Refer to the SqlClient documentation for details.
AdditionalDataColumns Use the AdditionalColumns collection instead. Configuring the sink no longer relies upon .NET DataColumn objects or .NET System types.
Id.BigInt Use Id.DataType = SqlDb.BigInt instead. (The BigInt property was only available in dev packages).
Binary and VarBinary Due to the way Serilog represents property data internally, it isn't possible for the sink to access property data as a byte array, so the sink can't write to these column types.

Most deprecated features are still available, but they are marked with the [Obsolete] attribute (which results in a compiler warning in your project) and will be removed in a future release. You should switch to the replacement implementations as soon as possible. Where possible, internally these are converted to the replacement implementation so that they only exist at the configuration level.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (118)

Showing the top 5 NuGet packages that depend on Serilog.Sinks.MSSqlServer:

Package Downloads
Takenet.Iris.Common

Iris common data types package

OAuthApp

OAuth2.0的Saas用户中心框架。

Omnia.Fx.NetCore.SharePointServer

Package Description

NBB.Correlation.Serilog.SqlServer

Extensions for creating new columns in sql Server for Serilog Table

Azasp.Core

Package Description

GitHub repositories (21)

Showing the top 5 popular GitHub repositories that depend on Serilog.Sinks.MSSqlServer:

Repository Stars
fullstackhero/dotnet-webapi-starter-kit
production grade .net 8 webapi starter kit with multitenancy support and clean code. 🔥
skoruba/IdentityServer4.Admin
The administration for the IdentityServer4 and Asp.Net Core Identity
enkodellc/blazorboilerplate
Blazor Boilerplate / Starter Template with MudBlazor
iammukeshm/CleanArchitecture.WebApi
An implementation of Clean Architecture for ASP.NET Core 3.1 WebAPI. Built with loosely coupled architecture and clean-code practices in mind.
luoyunchong/lin-cms-dotnetcore
😃A simple and practical CMS implemented by .NET + FreeSql;前后端分离、Docker部署、OAtuh2授权登录、自动化部署DevOps、自动同步至Gitee、代码生成器、仿掘金专栏
Version Downloads Last updated
6.6.1-dev-00074 678 2/23/2024
6.6.0 31,887 2/23/2024
6.6.0-dev-00072 599 2/15/2024
6.5.2 25,402 2/15/2024
6.5.2-dev-00071 126 2/15/2024
6.5.2-dev-00069 135 2/15/2024
6.5.2-dev-00068 552 2/1/2024
6.5.1 74,908 1/29/2024
6.5.1-dev-00066 148 1/29/2024
6.5.1-dev-00064 2,876 1/10/2024
6.5.1-dev-00063 2,770 12/4/2023
6.5.0 185,955 12/4/2023
6.5.0-dev-00061 370 12/4/2023
6.5.0-dev-00060 645 11/27/2023
6.4.0 32,330 11/25/2023
6.4.0-dev-00058 303 11/25/2023
6.4.0-dev-00057 325 11/24/2023
6.3.1-dev-00056 469 11/21/2023
6.3.0 1,392,479 3/19/2023
6.3.0-dev-00055 322 11/20/2023
6.3.0-dev-00054 278 11/20/2023
6.3.0-dev-00053 408 8/10/2023
6.3.0-dev-00052 498 5/13/2023
6.3.0-dev-00050 556 3/19/2023
6.3.0-dev-00049 6,978 2/7/2023
6.2.1-dev-00048 3,135 1/19/2023
6.2.0 553,755 1/19/2023
6.2.0-dev-00047 532 1/19/2023
6.2.0-dev-00046 531 1/19/2023
6.2.0-dev-00044 553 1/19/2023
6.2.0-dev-00043 521 1/19/2023
6.2.0-dev-00042 733 1/16/2023
6.2.0-dev-00041 667 1/8/2023
6.1.1-dev-00040 1,677 1/3/2023
6.1.1-dev-00039 787 12/30/2022
6.1.0 132,963 12/30/2022
6.1.0-dev-00038 490 12/30/2022
6.1.0-dev-00036 547 12/28/2022
6.1.0-dev-00035 739 12/19/2022
6.1.0-dev-00034 700 12/17/2022
6.1.0-dev-00033 690 12/11/2022
6.0.1-dev-00032 758 12/4/2022
6.0.1-dev-00031 2,622 10/17/2022
6.0.0 709,552 10/17/2022
6.0.0-dev-00029 524 10/17/2022
6.0.0-dev-00028 557 10/17/2022
5.9.0-dev-00027 670 10/15/2022
5.9.0-dev-00026 2,234 10/3/2022
5.9.0-dev-00025 842 10/2/2022
5.9.0-dev-00024 561 10/1/2022
5.8.0 422,333 9/28/2022
5.8.0-dev-00021 573 9/28/2022
5.8.0-dev-00020 5,840 7/25/2022
5.8.0-dev-00019 632 7/24/2022
5.8.0-dev-00018 3,525 6/23/2022
5.8.0-dev-00017 1,679 6/17/2022
5.7.1 1,075,470 6/17/2022
5.7.1-dev-00015 628 6/16/2022
5.7.1-dev-00014 12,321 3/18/2022
5.7.1-dev-00013 651 3/14/2022
5.7.1-dev-00012 752 3/7/2022
5.7.1-dev-00011 978 2/21/2022
5.7.1-dev-00009 802 2/20/2022
5.7.0 1,475,363 2/14/2022
5.7.0-dev-00441 546 2/15/2022
5.7.0-dev-00437 587 2/14/2022
5.7.0-dev-00435 576 2/14/2022
5.7.0-dev-00414 9,669 12/31/2021
5.7.0-dev-00412 565 12/31/2021
5.7.0-dev-00410 638 12/29/2021
5.7.0-dev-00408 528 12/29/2021
5.7.0-dev-00405 24,034 10/16/2021
5.7.0-dev-00008 561 2/20/2022
5.6.1 1,773,111 9/20/2021
5.6.1-dev-00402 808 10/5/2021
5.6.1-dev-00398 690 9/20/2021
5.6.0 3,039,472 11/6/2020
5.6.0-dev-00391 799 5/4/2021
5.6.0-dev-00388 839 12/8/2020
5.6.0-dev-00387 837 11/25/2020
5.6.0-dev-00383 895 11/6/2020
5.6.0-dev-00381 3,940 10/6/2020
5.6.0-dev-00379 1,098 9/26/2020
5.6.0-dev-00377 1,194 9/20/2020
5.6.0-dev-00375 8,812 8/3/2020
5.6.0-dev-00373 1,044 8/2/2020
5.5.2-dev-00370 1,027 7/29/2020
5.5.1 1,253,487 7/29/2020
5.5.1-dev-00366 967 7/29/2020
5.5.1-dev-00364 856 7/28/2020
5.5.1-dev-00362 971 7/28/2020
5.5.1-dev-00360 887 7/27/2020
5.5.1-dev-00358 7,732 7/5/2020
5.5.1-dev-00357 924 7/1/2020
5.5.1-dev-00356 871 7/1/2020
5.5.0 629,227 6/9/2020
5.5.0-dev-00351 894 6/9/2020
5.4.1-dev-00349 1,195 6/6/2020
5.4.1-dev-00347 830 6/6/2020
5.4.1-dev-00345 1,011 5/26/2020
5.4.1-dev-00343 997 5/24/2020
5.4.1-dev-00341 1,028 5/23/2020
5.4.1-dev-00338 1,907 5/21/2020
5.4.1-dev-00336 1,201 5/16/2020
5.4.1-dev-00334 1,551 5/13/2020
5.4.1-dev-00332 934 5/9/2020
5.4.1-dev-00330 850 5/7/2020
5.4.1-dev-00328 1,391 5/5/2020
5.4.0 640,897 5/5/2020
5.4.0-dev-00326 846 5/5/2020
5.4.0-dev-00322 847 5/5/2020
5.4.0-dev-00320 879 5/5/2020
5.4.0-dev-00314 1,111 4/30/2020
5.4.0-dev-00312 1,036 4/28/2020
5.4.0-dev-00310 801 4/28/2020
5.4.0-dev-00308 2,016 4/23/2020
5.4.0-dev-00306 2,076 4/22/2020
5.4.0-dev-00304 1,678 4/20/2020
5.3.0 182,735 4/20/2020
5.3.0-dev-00300 744 4/20/2020
5.3.0-dev-00298 765 4/20/2020
5.3.0-dev-00296 1,850 4/12/2020
5.3.0-dev-00294 804 4/12/2020
5.3.0-dev-00292 884 4/11/2020
5.3.0-dev-00290 1,158 4/8/2020
5.3.0-dev-00288 898 4/8/2020
5.3.0-dev-00286 859 4/8/2020
5.3.0-dev-00284 927 4/7/2020
5.3.0-dev-00282 844 4/7/2020
5.3.0-dev-00280 1,063 4/6/2020
5.3.0-dev-00278 882 4/6/2020
5.2.1-dev-00274 1,142 4/5/2020
5.2.1-dev-00271 778 4/5/2020
5.2.1-dev-00269 818 4/5/2020
5.2.1-dev-00267 991 4/5/2020
5.2.1-dev-00265 953 4/3/2020
5.2.1-dev-00257 4,903 3/30/2020
5.2.1-dev-00255 855 3/30/2020
5.2.0 267,541 3/27/2020
5.2.0-dev-00250 780 3/27/2020
5.2.0-dev-00248 13,676 3/12/2020
5.2.0-dev-00247 826 3/11/2020
5.2.0-dev-00246 812 3/11/2020
5.1.4 215,248 3/10/2020
5.1.4-dev-00242 837 3/10/2020
5.1.3 1,462,539 10/11/2019
5.1.3-dev-00241 902 1/20/2020
5.1.3-dev-00236 182,848 4/20/2019
5.1.3-dev-00235 943 4/20/2019
5.1.3-dev-00232 122,447 10/25/2018
5.1.3-dev-00231 2,253 10/20/2018
5.1.3-dev-00229 2,761 10/16/2018
5.1.3-dev-00226 17,614 10/5/2018
5.1.3-dev-00224 3,285 9/30/2018
5.1.3-dev-00221 1,619 9/21/2018
5.1.3-dev-00219 1,369 9/17/2018
5.1.3-dev-00217 1,160 9/17/2018
5.1.3-dev-00215 1,178 9/16/2018
5.1.3-dev-00212 4,186 9/7/2018
5.1.3-dev-00210 1,176 9/6/2018
5.1.3-dev-00206 1,181 9/6/2018
5.1.3-dev-00204 11,649 8/24/2018
5.1.3-dev-00202 2,096 8/2/2018
5.1.2 3,088,889 4/21/2018
5.1.2-dev-00201 1,480 7/12/2018
5.1.2-dev-00199 1,319 7/9/2018
5.1.2-dev-00196 1,334 5/9/2018
5.1.2-dev-00189 1,276 4/21/2018
5.1.1 130,974 3/12/2018
5.1.1-dev-00182 1,337 3/12/2018
5.1.0 161,606 1/3/2018
5.1.0-dev-00176 1,432 1/3/2018
5.1.0-dev-00174 3,948 12/4/2017
5.1.0-dev-00171 3,823 11/3/2017
5.1.0-dev-00169 2,175 10/17/2017
5.0.0 470,217 3/23/2017
5.0.0-dev-00156 3,120 12/6/2016
4.2.0 93,185 11/21/2016
4.1.2-dev-00150 1,422 10/20/2016
4.1.2-dev-00149 1,301 10/20/2016
4.1.2-dev-00141 1,720 9/9/2016
4.1.2-dev-00139 1,293 9/9/2016
4.1.1 52,830 9/4/2016
4.1.1-dev-00134 1,324 8/31/2016
4.1.1-dev-00133 1,294 8/31/2016
4.1.0 12,087 8/29/2016
4.1.0-dev-00128 1,301 8/29/2016
4.1.0-dev-00125 1,343 8/25/2016
4.1.0-dev-00122 1,318 8/24/2016
4.1.0-dev-00118 1,312 8/23/2016
4.1.0-dev-00114 1,382 8/11/2016
4.0.0 96,317 7/11/2016
4.0.0-dev-00109 1,393 7/11/2016
4.0.0-dev-00108 1,402 7/11/2016
4.0.0-beta-92 1,500 5/25/2016
4.0.0-beta-90 1,400 4/20/2016
4.0.0-beta-83 1,304 4/18/2016
4.0.0-beta-107 1,290 7/10/2016
4.0.0-beta-102 1,301 6/28/2016
4.0.0-beta-100 1,260 6/8/2016
3.0.98 27,035 6/7/2016
3.0.52 59,734 3/16/2016
3.0.50 1,593 3/16/2016
3.0.48 4,597 2/26/2016
3.0.46 22,226 2/20/2016
3.0.45 1,681 2/20/2016
3.0.42 4,868 2/11/2016
3.0.41 4,519 1/13/2016
2.0.39 1,969 1/7/2016
2.0.32 3,281 12/23/2015
2.0.31 1,578 12/23/2015
2.0.30 1,604 12/23/2015
2.0.29 1,618 12/23/2015
2.0.28 1,563 12/23/2015
2.0.27 1,536 12/23/2015
2.0.14 7,884 11/7/2015
2.0.13 1,781 11/5/2015
2.0.9 18,268 6/23/2015
2.0.7 11,406 4/8/2015
2.0.6 1,749 4/8/2015
1.5.4 1,894 4/2/2015
1.5.3 1,660 4/1/2015
1.5.2 1,662 3/30/2015
1.5.1 1,675 3/27/2015
1.4.196 4,312 2/22/2015
1.4.182 1,876 2/15/2015
1.4.168 2,972 2/8/2015
1.4.155 1,859 2/1/2015
1.4.139 1,745 1/23/2015
1.4.118 1,796 1/13/2015
1.4.113 1,784 1/6/2015
1.4.102 2,116 12/21/2014
1.4.99 2,593 12/18/2014
1.4.97 1,851 12/18/2014
1.4.76 5,080 12/8/2014
1.4.39 1,859 11/26/2014
1.4.34 1,839 11/24/2014
1.4.28 1,819 11/24/2014
1.4.27 1,783 11/23/2014
1.4.23 2,007 11/21/2014
1.4.21 1,786 11/21/2014
1.4.18 1,929 11/18/2014
1.4.15 2,768 11/4/2014
1.4.14 1,804 10/23/2014
1.4.13 1,642 10/23/2014
1.4.12 1,703 10/12/2014
1.4.11 2,888 10/8/2014
1.4.10 1,817 9/26/2014
1.4.9 1,721 9/17/2014
1.4.8 1,656 9/11/2014
1.4.7 1,863 9/1/2014
1.4.6 1,651 8/31/2014
1.4.5 1,664 8/27/2014
1.4.4 1,620 8/27/2014
1.4.3 1,726 8/25/2014
1.4.2 1,635 8/23/2014
1.4.1 1,710 8/23/2014
1.3.43 1,792 8/4/2014
1.3.42 1,664 7/30/2014
1.3.41 1,633 7/28/2014
1.3.40 1,652 7/26/2014
1.3.39 1,655 7/25/2014
1.3.36 1,676 7/20/2014
1.3.35 1,616 7/17/2014
1.3.34 1,930 7/6/2014
1.3.33 1,660 6/30/2014
1.3.30 1,707 6/19/2014
1.3.29 1,646 6/19/2014
1.3.28 1,690 6/19/2014
1.3.27 1,682 6/18/2014
1.3.25 1,622 6/9/2014
1.3.24 1,699 5/21/2014
1.3.23 1,621 5/20/2014
1.3.20 1,661 5/18/2014
1.3.19 1,656 5/17/2014
1.3.18 1,593 5/17/2014
1.3.17 1,773 5/17/2014
1.3.16 1,673 5/17/2014
1.3.15 1,651 5/16/2014
1.3.14 1,872 5/16/2014
1.3.13 1,749 5/16/2014
1.3.12 1,676 5/14/2014
1.3.7 1,671 5/11/2014
1.3.6 1,638 5/9/2014
1.3.5 1,654 5/6/2014
1.3.4 1,629 5/4/2014
1.3.3 1,666 4/28/2014
1.3.1 1,919 4/26/2014
1.2.53 1,773 4/26/2014
1.2.52 1,632 4/24/2014
1.2.51 1,882 4/18/2014
1.2.50 2,125 4/18/2014
1.2.49 1,788 4/17/2014
1.2.48 5,413 4/14/2014