Serilog.UI.MsSqlServerProvider
3.1.0
See the version list below for details.
dotnet add package Serilog.UI.MsSqlServerProvider --version 3.1.0
NuGet\Install-Package Serilog.UI.MsSqlServerProvider -Version 3.1.0
<PackageReference Include="Serilog.UI.MsSqlServerProvider" Version="3.1.0" />
<PackageVersion Include="Serilog.UI.MsSqlServerProvider" Version="3.1.0" />
<PackageReference Include="Serilog.UI.MsSqlServerProvider" />
paket add Serilog.UI.MsSqlServerProvider --version 3.1.0
#r "nuget: Serilog.UI.MsSqlServerProvider, 3.1.0"
#:package Serilog.UI.MsSqlServerProvider@3.1.0
#addin nuget:?package=Serilog.UI.MsSqlServerProvider&version=3.1.0
#tool nuget:?package=Serilog.UI.MsSqlServerProvider&version=3.1.0
serilog-ui
A simple Serilog log viewer for the following sinks:
- Serilog.Sinks.MSSqlServer (Nuget)
- Serilog.Sinks.MySql (Nuget) and Serilog.Sinks.MariaDB Nuget
- Serilog.Sinks.Postgresql (Nuget) and Serilog.Sinks.Postgresql.Alternative (Nuget)
- Serilog.Sinks.MongoDB (Nuget)
- Serilog.Sinks.ElasticSearch (Nuget)
- Serilog.Sinks.RavenDB (Nuget)
- Serilog.Sinks.SQLite (Nuget)
Read the Wiki
Quick Start
Nuget packages installation
Install the Serilog.UI NuGet package:
# using dotnet cli
dotnet add package Serilog.UI
# using package manager:
Install-Package Serilog.UI
Install one or more of the available providers, based upon your sink(s):
| Provider | install: dotnet | install: pkg manager |
|---|---|---|
| Serilog.UI.MsSqlServerProvider [NuGet] | dotnet add package Serilog.UI.MsSqlServerProvider |
Install-Package Serilog.UI.MsSqlServerProvider |
| Serilog.UI.MySqlProvider [NuGet] | dotnet add package Serilog.UI.MySqlProvider |
Install-Package Serilog.UI.MySqlProvider |
| Serilog.UI.PostgreSqlProvider [NuGet] | dotnet add package Serilog.UI.PostgreSqlProvider |
Install-Package Serilog.UI.PostgreSqlProvider |
| Serilog.UI.MongoDbProvider [NuGet] | dotnet add package Serilog.UI.MongoDbProvider |
Install-Package Serilog.UI.MongoDbProvider |
| Serilog.UI.ElasticSearchProvider [NuGet] | dotnet add package Serilog.UI.ElasticSearchProvider |
Install-Package Serilog.UI.ElasticSearchProvider |
| Serilog.UI.RavenDbProvider [NuGet] | dotnet add package Serilog.UI.RavenDbProvider |
Install-Package Serilog.UI.RavenDbProvider |
| Serilog.UI.SQLiteProvider [NuGet] | dotnet add package Serilog.UI.SQLiteProvider |
Install-Package Serilog.UI.SQLiteProvider |
DI registration
Add AddSerilogUi() to IServiceCollection in your Startup.ConfigureServices method:
public void ConfigureServices(IServiceCollection services)
{
// Register the serilog UI services
services.AddSerilogUi(options => options// each provider exposes extension methods to configure.
// example with MSSqlServerProvider:
.UseSqlServer(opts => opts
.WithConnectionString("YOUR_CONNECTION_STRING")
.WithTable("YOUR_TABLE")));
}
In the Startup.Configure method or on the WebApplication builder, enable the middleware to serve the log UI page.
NOTE: call to the UseSerilogUi middleware must be placed after any Authentication and Authorization middleware!
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
(...)
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
// Enable middleware to serve log-ui (HTML, JS, CSS, etc.).
app.UseSerilogUi(opts => [...]);
(...)
}
For further configuration
Issues and Contribution
Everything is welcome! See the contribution guidelines for details.
For details on running the project, start reading from Develop.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. 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. |
-
.NETStandard 2.0
- Ardalis.GuardClauses (>= 4.6.0)
- Dapper (>= 2.1.35)
- Microsoft.Data.SqlClient (>= 5.2.2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Serilog.UI.MsSqlServerProvider:
| Package | Downloads |
|---|---|
|
WGM.Infrastructure.Core
Package Description |
|
|
base-app.packages.log
base-app serilog and elmah |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 3.2.0 | 9,660 | 4/23/2025 | |
| 3.1.0 | 24,997 | 10/10/2024 | |
| 3.1.0-beta.1 | 840 | 8/15/2024 | |
| 3.0.0 | 1,885 | 8/10/2024 | |
| 2.2.3 | 31,547 | 1/28/2024 | |
| 2.2.3-beta.1 | 406 | 1/14/2024 | |
| 2.2.1 | 14,974 | 6/1/2023 | |
| 2.2.0 | 7,171 | 3/16/2023 | |
| 2.1.3 | 979 | 3/13/2023 | |
| 2.1.2 | 16,093 | 11/10/2022 | |
| 2.1.1 | 20,381 | 1/13/2022 | |
| 2.1.0 | 23,314 | 4/20/2021 | |
| 2.0.0 | 12,239 | 1/15/2021 | |
| 1.0.6 | 2,747 | 1/10/2021 | |
| 1.0.5 | 1,408 | 12/23/2020 | |
| 1.0.4 | 3,056 | 10/25/2020 | |
| 1.0.2 | 1,652 | 4/11/2020 |