A basic Slack Sink for the Serilog framework.
Build & Test Status (main) | |
Nuget Package Version | |
SonarCloudQuality Gate Status |
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.
You can get the latest version of this software as a nuget package form nuget.org
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 |
a) Absolute basic usage:
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Slack(
slackWebHookUrl: "https://...",
slackChannel: null
)
.CreateLogger();
b) 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();
c) 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();
The full documentation for this package can be found here.
The associated repo for this package can be found here.