Skip to content

Latest commit

 

History

History
 
 

raven-log4j

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Raven-log4j

log4j support for Raven. It provides an Appender for log4j to send the logged events to Sentry.

Installation

Maven

<dependency>
    <groupId>net.kencochrane.raven</groupId>
    <artifactId>raven-log4j</artifactId>
    <version>5.0</version>
</dependency>

Other dependency managers

Details in the central Maven repository.

Manual dependency management

Relies on:

Usage

Configuration

In the log4j.properties file set:

log4j.rootLogger=WARN, SentryAppender
log4j.appender.SentryAppender=net.kencochrane.raven.log4j.SentryAppender
log4j.appender.SentryAppender.dsn=https://publicKey:secretKey@host:port/1?options
log4j.appender.SentryAppender.tags=tag1:value1,tag2:value2
# Optional, allows to select the ravenFactory
#log4j.appender.SentryAppender.ravenFactory=net.kencochrane.raven.DefaultRavenFactory

Additional data and information

It's possible to add extra details to events captured by the Log4j module thanks to both the MDC and the NDC systems provided by Log4j are usable, allowing to attach extras information to the event.

In practice

import org.apache.log4j.Logger;
import org.apache.log4j.MDC;
import org.apache.log4j.NDC;

public class MyClass {
    private static final Logger logger = Logger.getLogger(MyClass.class);

    void logSimpleMessage() {
        // This adds a simple message to the logs
        logger.info("This is a test");
    }

    void logWithExtras() {
        // MDC extras
        MDC.put("extra_key", "extra_value");
        // NDC extras are sent under 'log4J-NDC'
        NDC.push("Extra_details");
        // This adds a message with extras to the logs
        logger.info("This is a test");
    }

    void logException() {
        try {
            unsafeMethod();
        } catch (Exception e) {
            // This adds an exception to the logs
            logger.error("Exception caught", e);
        }
    }

    void unsafeMethod() {
        throw new UnsupportedOperationException("You shouldn't call that");
    }
}

Mapped Tags

By default all MDC parameters are sent under the Additional Data Tab. By specify the mappedTags parameter in your configuration file. You can specify MDC keys to send as tags instead of including them in Additional Data. This allows them to be filtered within Sentry.

log4j.appender.SentryAppender.mappedTags=User,OS
    void logWithExtras() {
        // MDC extras
        MDC.put("User", "test user");
        MDC.put("OS", "Linux");

        // This adds a message with extras and MDC keys declared in mappedTags as tags to Sentry
        logger.info("This is a test");
    }

Asynchronous logging

It is not recommended to attempt to set up SentryAppender within an AsyncAppender. While this is a common solution to avoid blocking the current thread until the event is sent to Sentry, it is recommended to rely instead on the asynchronous connection provided by Raven.