jjm.one.Serilog.Sinks.SlackWebHook
2.1.4
See the version list below for details.
dotnet add package jjm.one.Serilog.Sinks.SlackWebHook --version 2.1.4
NuGet\Install-Package jjm.one.Serilog.Sinks.SlackWebHook -Version 2.1.4
<PackageReference Include="jjm.one.Serilog.Sinks.SlackWebHook" Version="2.1.4" />
paket add jjm.one.Serilog.Sinks.SlackWebHook --version 2.1.4
#r "nuget: jjm.one.Serilog.Sinks.SlackWebHook, 2.1.4"
// Install jjm.one.Serilog.Sinks.SlackWebHook as a Cake Addin #addin nuget:?package=jjm.one.Serilog.Sinks.SlackWebHook&version=2.1.4 // Install jjm.one.Serilog.Sinks.SlackWebHook as a Cake Tool #tool nuget:?package=jjm.one.Serilog.Sinks.SlackWebHook&version=2.1.4
jjm.one.Serilog.Sinks.SlackWebHook
A basic Slack Sink for the Serilog framework.
Status
Build & Test Status (main) | |
Nuget Package Version | |
SonarCloudQuality Gate Status |
Description
This tool provides a Serilog Sink which sends log messages to one or more channels in a Slack workspace. To send this messages this tool is using the Slack.Webhooks project to handle the communication with Slack. Therefor you need a valid WebHook URL to use this Sink. To get such a WebHook URL please read this article. The log messages will be send in batches to the slack servers. You can setup the batch size to fit your needs.
Nuget Package
You can get the latest version of this software as a nuget package form nuget.org
Installing the Nuget Package
Tool | Command/Code |
---|---|
Package Manager | PM> Install-Package jjm.one.Serilog.Sinks.SlackWebHook -Version X.Y.Z |
.NET CLI | > dotnet add package jjm.one.Serilog.Sinks.SlackWebHook --version X.Y.Z |
PackageReference | <PackageReference Include="jjm.one.Serilog.Sinks.SlackWebHook" Version="X.Y.Z" /> |
Package CLI | > paket add jjm.one.Serilog.Sinks.SlackWebHook --version X.Y.Z |
Script & Interactive | > #r "nuget: jjm.one.Serilog.Sinks.SlackWebHook, X.Y.Z" |
Cake as Addin | #addin nuget:?package=jjm.one.Serilog.Sinks.SlackWebHook&version=X.Y.Z |
Cake as Tool | #tool nuget:?package=jjm.one.Serilog.Sinks.SlackWebHook&version=X.Y.Z |
Dependencies
Serilog related
Slack related
Usage
- Absolute basic usage:
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Slack(
slackWebHookUrl: "https://...",
slackChannel: null
)
.CreateLogger();
- Recommended usage:
var logLevelSwitch = new LoggingLevelSwitch(initialMinimumLevel: LogEventLevel.Verbose);
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Slack(
slackWebHookUrl: "https://...",
slackChannel: "log-output-channel",
slackUsername: "Serilog Slack Sink Bot",
slackEmojiIcon: ":monkey_face:",
periodicBatchingSinkOptionsBatchSizeLimit: 1,
periodicBatchingSinkOptionsPeriod: TimeSpan.FromMilliseconds(1000),
periodicBatchingSinkOptionsQueueLimit: 10000,
sinkRestrictedToMinimumLevel: LogEventLevel.Verbose,
sinkLevelSwitch:logLevelSwitch
)
.CreateLogger();
- Advanced usage (all available option exposed):
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Slack(
slackWebHookUrl: "https://...",
slackUsername: null,
slackEmojiIcon: null,
slackUriIcon: null,
slackChannels: null,
slackDeleteOriginal: null,
slackLinkNames: null,
slackMarkdown: null,
slackParseObj: null,
slackReplaceOriginal: null,
slackResponseType: null,
slackThreadId: null,
slackAttachmentColorsObj: null,
slackAttachmentFooterIconObj: null,
slackAddShortInfoAttachment: null,
slackDisplayShortInfoAttachmentShort: null,
slackAddExtendedInfoAttachment: null,
slackDisplayExtendedInfoAttachmentShort: null,
slackAddExceptionAttachment: null,
slackDisplayExceptionAttachmentShort: null,
slackConnectionTimeout: null,
slackHttpClientObj: null,
generateSlackFunctions: null,
periodicBatchingSinkOptionsBatchSizeLimit: null,
periodicBatchingSinkOptionsPeriod: null,
periodicBatchingSinkOptionsQueueLimit: null,
sinkRestrictedToMinimumLevel: null,
sinkOutputTemplate: null,
sinkLevelSwitch: null,
sinkFormatProvider: null,
sinkActivationSwitch: null
)
.CreateLogger();
Full Documentation
The full documentation for this package can be found here.
Repo
The associated repo for this package can be found here.
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 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 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 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
- Newtonsoft.Json (>= 13.0.3)
- Serilog (>= 4.0.2)
- Serilog.Sinks.PeriodicBatching (>= 5.0.0)
- Slack.Webhooks (>= 1.1.5)
- System.Net.Http (>= 4.3.4)
- System.Text.RegularExpressions (>= 4.3.1)
-
.NETStandard 2.1
- Newtonsoft.Json (>= 13.0.3)
- Serilog (>= 4.0.2)
- Serilog.Sinks.PeriodicBatching (>= 5.0.0)
- Slack.Webhooks (>= 1.1.5)
- System.Net.Http (>= 4.3.4)
- System.Text.RegularExpressions (>= 4.3.1)
-
net6.0
- Newtonsoft.Json (>= 13.0.3)
- Serilog (>= 4.0.2)
- Serilog.Sinks.PeriodicBatching (>= 5.0.0)
- Slack.Webhooks (>= 1.1.5)
- System.Net.Http (>= 4.3.4)
- System.Text.RegularExpressions (>= 4.3.1)
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
- Serilog (>= 4.0.2)
- Serilog.Sinks.PeriodicBatching (>= 5.0.0)
- Slack.Webhooks (>= 1.1.5)
- System.Net.Http (>= 4.3.4)
- System.Text.RegularExpressions (>= 4.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.