Serilog.Sinks.SlackWebHook
1.2.0
jjm.one.Serilog.Sinks.SlackWebHook
Additional DetailsThe "Serilog.Sinks.SlackWebHook" package was renamed and moved to a new namespace: jjm.one.Serilog.Sinks.SlackWebHook
See the version list below for details.
dotnet add package Serilog.Sinks.SlackWebHook --version 1.2.0
NuGet\Install-Package Serilog.Sinks.SlackWebHook -Version 1.2.0
<PackageReference Include="Serilog.Sinks.SlackWebHook" Version="1.2.0" />
paket add Serilog.Sinks.SlackWebHook --version 1.2.0
#r "nuget: Serilog.Sinks.SlackWebHook, 1.2.0"
// Install Serilog.Sinks.SlackWebHook as a Cake Addin #addin nuget:?package=Serilog.Sinks.SlackWebHook&version=1.2.0 // Install Serilog.Sinks.SlackWebHook as a Cake Tool #tool nuget:?package=Serilog.Sinks.SlackWebHook&version=1.2.0
Serilog.Sinks.SlackWebHook
A basic Slack Sink for the Serilog framework.
Status
Nuget Package Version | |
nuget.org Deployment | |
Build Status Master | |
Build Status Develop | |
Test Status Master | |
Test Status Develop | |
Sonar Code Quality | |
Maintenance 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 Serilog.Sinks.SlackWebHook -Version X.Y.Z |
.NET CLI | > dotnet add package Serilog.Sinks.SlackWebHook --version X.Y.Z |
PackageReference | <PackageReference Include="Serilog.Sinks.SlackWebHook" Version="X.Y.Z" /> |
Package CLI | > paket add 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();
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 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
- Serilog (>= 2.10.0)
- Serilog.Sinks.PeriodicBatching (>= 2.3.0)
- Slack.Webhooks (>= 1.1.4)
-
.NETStandard 2.1
- Serilog (>= 2.10.0)
- Serilog.Sinks.PeriodicBatching (>= 2.3.0)
- Slack.Webhooks (>= 1.1.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.