Serilog.UI.MongoDbProvider
2.3.1
See the version list below for details.
dotnet add package Serilog.UI.MongoDbProvider --version 2.3.1
NuGet\Install-Package Serilog.UI.MongoDbProvider -Version 2.3.1
<PackageReference Include="Serilog.UI.MongoDbProvider" Version="2.3.1" />
paket add Serilog.UI.MongoDbProvider --version 2.3.1
#r "nuget: Serilog.UI.MongoDbProvider, 2.3.1"
// Install Serilog.UI.MongoDbProvider as a Cake Addin #addin nuget:?package=Serilog.UI.MongoDbProvider&version=2.3.1 // Install Serilog.UI.MongoDbProvider as a Cake Tool #tool nuget:?package=Serilog.UI.MongoDbProvider&version=2.3.1
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 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. |
.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
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
- MongoDB.Driver (>= 2.21.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.