KissLog.CloudListeners
5.3.1
Prefix Reserved
dotnet add package KissLog.CloudListeners --version 5.3.1
NuGet\Install-Package KissLog.CloudListeners -Version 5.3.1
<PackageReference Include="KissLog.CloudListeners" Version="5.3.1" />
paket add KissLog.CloudListeners --version 5.3.1
#r "nuget: KissLog.CloudListeners, 5.3.1"
// Install KissLog.CloudListeners as a Cake Addin #addin nuget:?package=KissLog.CloudListeners&version=5.3.1 // Install KissLog.CloudListeners as a Cake Tool #tool nuget:?package=KissLog.CloudListeners&version=5.3.1
KissLog
KissLog is the built-in .NET integration for saving the logs to logbee.net.
Check the Wiki page for a complete list of features.
.NET support
Why KissLog?
KissLog implements three main components: logging functionality, exceptions tracking and application insights.
For web applications, KissLog automatically captures all the HTTP properties.
KissLog keeps the log events in memory and sends them to the registered listeners all at once. This can help reduce the load of the persistence implementation (such as Disk I/O, database operations or network throughput).
Centralized logging using logbee.net or Logbee on-premises.
<table><tr><td> <img alt="logbee.net centralized logging" width="600" src="https://github.com/catalingavan/KissLog.Sdk/assets/39127098/583ff625-d0ce-4ebc-b0d7-9a3b0257d3ef" /> </td></tr></table>
Basic usage
using KissLog;
using KissLog.Listeners.FileListener;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
KissLogConfiguration.Listeners
.Add(new LocalTextFileListener("logs", FlushTrigger.OnFlush));
var logger = new Logger();
logger.Trace("Hey, I am a log message");
Logger.NotifyListeners(logger);
}
}
}
Saving the logs
KissLog saves the logs to multiple output locations by using log listeners.
Log listeners are registered at application startup using the KissLogConfiguration.Listeners
container.
Custom log listeners can be easily implemented.
Using interceptors, log listeners can apply conditional filtering rules before saving the events.
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
KissLogConfiguration.Listeners
.Add(new LocalTextFileListener("logs", FlushTrigger.OnMessage))
.Add(new CustomMongoDbListener("mongodb://localhost:27017", "Logs")
{
Interceptor = new LogLevelInterceptor(LogLevel.Information)
});
var logger = new Logger();
logger.Trace("Hey, I am a log message");
Logger.NotifyListeners(logger);
}
}
}
Configuration
KissLog supports various configuration options using the KissLogConfiguration.Options
configuration object.
private void ConfigureKissLog
{
KissLogConfiguration.Options
.AppendExceptionDetails((Exception ex) =>
{
if (ex is DivideByZeroException zeroDivisionEx)
return ">>> Should check if the denominator is zero before dividing";
return null;
});
}
Samples
Different use cases and examples can be found on the KissLog integrations page.
Feedback
Please use the issues section to report bugs, suggestions and general feedback.
Contributing
All contributions are very welcomed: code, documentation, samples, bug reports, feature requests.
License
Product | Versions 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 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 is compatible. 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 is compatible. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 is compatible. net472 was computed. net48 was computed. net481 is compatible. |
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. |
-
.NETFramework 4.6.2
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7.1
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.8.1
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 2.0
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 2.1
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
net6.0
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
net7.0
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
-
net8.0
- KissLog (>= 5.3.1)
- KissLog.RestClient (>= 5.3.1)
- System.Net.Http (>= 4.3.4)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on KissLog.CloudListeners:
Package | Downloads |
---|---|
KissLog.AspNetCore
KissLog .NET and ASP.NET Core package. Install this package on .NET and ASP.NET Core applications. |
|
KissLog.AspNet.Web
KissLog Web package. You should not manually install this package, as it will be installed as a dependency. |
GitHub repositories
This package is not used by any popular GitHub repositories.