简体   繁体   中英

Using Serilog Slack Sink Via XML Configuration

  1. Is it possible to configure Slack sink using serilog XML configuration ?
  2. Is any sink configurable via code is also configurable via XML or it has to explicitly support it?

Incase anybody encounters this, I was able to do it:

<add key="serilog:using:Slack" value="Serilog.Sinks.Slack" />
<add key="serilog:write-to:Slack.webhookUrl" value="https://hooks.slack.com/services/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" />
<add key="serilog:write-to:Slack.restrictedToMinimumLevel" value="Error"/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM