Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

README.md

File metadata and controls

33 lines (24 loc) · 1.33 KB

Sentry Target for NLog

Build status NuGet

NLog Sentry is a custom target for NLog enabling you to send logging messages to the Sentry logging service.

Configuration

To use the Sentry target, simply add it an extension in the NLog.config file and place the NLog.Targets.Sentry.dll in the same location as the NLog.dll & NLog.config files.

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <extensions>
    <add assembly="NLog.Targets.Sentry3" />
  </extensions>

  <targets>
    <target name="sentry" type="Sentry" dsn="[your sentry dsn]" environment="[develop|test|production]" timeout="[hh:MM:ss]" />
  </targets>

  <rules>
    <logger name="*" minlevel="Error" writeTo="sentry" />
  </rules>
</nlog>

The DSN attribute is required for the target to log to Sentry. The environment and timeout properties are options and will default to "develop" and "00:00:10" if not explicitly set.