serilog-sinks-slack icon indicating copy to clipboard operation
serilog-sinks-slack copied to clipboard

A simple (yet customizable) Slack logging sink for Serilog

Results 11 serilog-sinks-slack issues
Sort by recently updated
recently updated
newest added

I haven't really dug into the problem yet but the symptoms first showed when a service wouldn't start up. Running the exe interactively resulted in: ``` Stack overflow. Repeat 8733...

bug

Fixes #30 by exposing MinimumLogEventLevel in config extensions

It would be good if each log level (info, debug, trace, warning, error, critical, etc) could have their own channel specified to send messages to.

- Add proxy informations needed to SlackSinkOptions (address, username, password) - Update HttpClient creation (from SlackSink.cs) so it uses proxy - Update extensions methods - Update readme / version Note...

I have implemented this in our web app project. I want to log Post Api body details in the error to have details about the API call. But right now...

**Does this issue relate to a new feature or an existing bug?** Bug **What version of Serilog.Sinks.Elasticsearch is affected?** 2.0.3 **What is the target framework and operating system?** Net Core...

bug

Hi, Here is Slack screenshots from pc, can we make Event property values fill the width so I don't need to scroll too much :) and it's hard to read...

enhancement
help wanted

When building a strong-named assembly referencing this sink, one will get the warning below during the build. CSC : warning CS8002: Referenced assembly 'Serilog.Sinks.Slack, Version=1.2.56.0, Culture=neutral, PublicKeyToken=null' does not have...

The current implementation uses Serilog's PeriodicBatchingSink. It is set up to receive a message batch, loop the collection, sending each message as a separate HTTP request (a Slack limitation, the...

I have two Slack Sinks that log to different Channels. One Channel is for logs and the other is for alerts. Like below: .WriteTo.Slack( webhookUrl: "https://hooks.slack.com/services/hook1", //hook for alerting CST...

question