RumbleInc / log4net-loggly

log4net-loggly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

log4net-loggly

Custom log4net appenders for importing logging events to loggly.

Download log4net-loggly package from NuGet. Use the following command.

Install-Package log4net-loggly

Add the following code in your web.config to configure LogglyAppender in your application

<configSections>
  <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<log4net>
  <root>
    <level value="ALL" />
    <appender-ref ref="LogglyAppender" />
  </root>
  <appender name="LogglyAppender" type="log4net.loggly.LogglyAppender, log4net-loggly">
    <rootUrl value="http://logs-01.loggly.com/" />
    <inputKey value="your-customer-token" />
	<tag value="your-custom-tag" />
  </appender>
</log4net>

Create an object of the Log class using LogManager

var logger = LogManager.GetLogger(typeof(Class));

Send logs to Loggly using the following code

logger.Info("log message");

About

log4net-loggly


Languages

Language:C# 84.7%Language:PowerShell 15.3%