Serilog.UI
2.5.0
See the version list below for details.
dotnet add package Serilog.UI --version 2.5.0
NuGet\Install-Package Serilog.UI -Version 2.5.0
<PackageReference Include="Serilog.UI" Version="2.5.0" />
<PackageVersion Include="Serilog.UI" Version="2.5.0" />
<PackageReference Include="Serilog.UI" />
paket add Serilog.UI --version 2.5.0
#r "nuget: Serilog.UI, 2.5.0"
#:package Serilog.UI@2.5.0
#addin nuget:?package=Serilog.UI&version=2.5.0
#tool nuget:?package=Serilog.UI&version=2.5.0
serilog-ui

A simple Serilog log viewer for the following sinks:
- Serilog.Sinks.MSSqlServer (Nuget)
- Serilog.Sinks.MySql (Nuget)
- Serilog.Sinks.Postgresql (Nuget)
- Serilog.Sinks.MongoDB (Nuget)
- Serilog.Sinks.ElasticSearch (Nuget)
<img src="https://raw.githubusercontent.com/mo-esmp/serilog-ui/master/assets/serilog-ui.jpg" width="100%" />
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 of the available providers, based upon your sink:
| 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.ElasticSearcProvider |
DI registration
Add AddSerilogUi() to IServiceCollection in your Startup.ConfigureServices method:
public void ConfigureServices(IServiceCollection services)
{
// Register the serilog UI services
services.AddSerilogUi(options =>
// each provider exposes extension methods to configure.
// example with MSSqlServerProvider:
options.UseSqlServer("ConnectionString", "LogTableName"));
}
In the Startup.Configure method, enable the middleware to serve the log UI page.
Note: call to the UseSerilogUi middleware must be placed after any Authentication and Authorization middleware, otherwise the authentication may not work:
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();
(...)
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
For further configuration: :fast_forward:
Running the Tests: :test_tube:
License
See LICENSE.
Issues and Contribution
Everything is welcome! 🏆 See the contribution guidelines for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. 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 is compatible. 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 | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Ardalis.GuardClauses (>= 4.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 3.1.3)
- Newtonsoft.Json (>= 13.0.3)
- Scrutor (>= 4.2.2)
-
net5.0
- Ardalis.GuardClauses (>= 4.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0.0)
- Newtonsoft.Json (>= 13.0.3)
- Scrutor (>= 4.2.2)
-
net6.0
- Ardalis.GuardClauses (>= 4.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Newtonsoft.Json (>= 13.0.3)
- Scrutor (>= 4.2.2)
-
net7.0
- Ardalis.GuardClauses (>= 4.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- Newtonsoft.Json (>= 13.0.3)
- Scrutor (>= 4.2.2)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Serilog.UI:
| Package | Downloads |
|---|---|
|
Pina.SharedApi
Package Description |
|
|
WGM.Infrastructure.Core
Package Description |
|
|
Inaction.Web.Utils.Logs.SerilogUI
Package Description |
|
|
base-app.packages.log
base-app serilog and elmah |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Serilog.UI:
| Repository | Stars |
|---|---|
|
kzeedev/MTWireGuard
A web-based GUI for managing Wireguard on Mikrotik devices.
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 4.0.0-beta.1 | 131 | 5/22/2026 | |
| 3.2.0 | 161,781 | 4/23/2025 | |
| 3.1.1 | 5,753 | 4/1/2025 | |
| 3.1.0 | 117,447 | 10/10/2024 | |
| 3.1.0-beta.1 | 945 | 8/15/2024 | |
| 3.0.2 | 2,602 | 9/21/2024 | |
| 3.0.1 | 6,280 | 8/15/2024 | |
| 3.0.0 | 1,717 | 8/10/2024 | |
| 2.6.0 | 80,079 | 1/29/2024 | |
| 2.5.1 | 17,959 | 11/8/2023 | |
| 2.5.0 | 9,304 | 10/3/2023 | |
| 2.4.0 | 37,809 | 3/16/2023 | |
| 2.3.0 | 876 | 3/13/2023 | |
| 2.2.3 | 13,323 | 11/25/2022 | |
| 2.2.1 | 28,137 | 9/9/2022 | |
| 2.2.0 | 2,295 | 8/25/2022 | |
| 2.1.3 | 3,907 | 7/20/2022 |