AlertLogger 2.5.0
dotnet add package AlertLogger --version 2.5.0
NuGet\Install-Package AlertLogger -Version 2.5.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="AlertLogger" Version="2.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AlertLogger" Version="2.5.0" />
<PackageReference Include="AlertLogger" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AlertLogger --version 2.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AlertLogger, 2.5.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.
#:package AlertLogger@2.5.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AlertLogger&version=2.5.0
#tool nuget:?package=AlertLogger&version=2.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Simple alert package
This nuget use Serilog and its Sinks Clients for logging anything to specific destination. This one so far is for following logs:
- Slack
- File
- Console
Installation
Depends on the .net core version
- Versions above 6.0 Just call method builder.UseAlertLogger() in the program.cs
- Versions below 6.0 In a Main call this static method AlertLogger.UseAlertLoggerMain() before Build() call In program.cs attach UseAlertLogger() method to "Host.CreateDefaultBuilder(args)"
- Source code: https://github.com/markok0stic/slack-alert-extension
- In appsettings.json configure these params:
"Serilog": {
"MinimumLevel": "Information",
"WriteTo": [
{
"Name": "Console",
"Args":
{
"restrictedToMinimumLevel": "Information"
}
},
{
"Name": "File",
"Args":
{
"path": "log.txt",
"rollingInterval": "Day",
"restrictedToMinimumLevel": "Error"
}
},
{
"Name": "Slack",
"Args":
{
"webhookUrl": "https://hooks.slack.com/services/xxx/yyyy",
"batchSizeLimit": 20,
"queueLimit": 1000,
"showDefaultAttachments": true,
"showExceptionAttachments": true,
"restrictedToMinimumLevel": 4,
"outputTemplate": "",
"propertyDenyList": [ "ActionId", "RequestId", "ConnectionId" ]
}
}
]
}
- You can exclude any of above mentioned Serilog configs (sinks) in order to not use them at all.
- Possible log levels LogEventLevel.
- Read more about this configuration on Serilog and Serilog.Sinks.Slack.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.Extensions.Hosting (>= 7.0.0)
- Microsoft.Extensions.Logging (>= 7.0.0)
- Serilog.Enrichers.Environment (>= 2.2.0)
- Serilog.Extensions.Hosting (>= 5.0.1)
- Serilog.Settings.Configuration (>= 3.4.0)
- Serilog.Sinks.Console (>= 4.1.0)
- Serilog.Sinks.File (>= 5.0.0)
- Serilog.Sinks.Slack (>= 2.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 2.5.0 | 259 | 8/20/2023 | |
| 2.3.0 | 854 | 1/17/2023 | |
| 0.0.0-alpha.0.20 | 181 | 8/20/2023 |