log4j support for Raven.
It provides an Appender
for log4j to send the logged events to Sentry.
<dependency>
<groupId>net.kencochrane.raven</groupId>
<artifactId>raven-log4j</artifactId>
<version>5.0</version>
</dependency>
Details in the central Maven repository.
Relies on:
- raven dependencies
- log4j-1.2.17.jar
- slf4j-log4j12-1.7.7.jar is recommended as the implementation of slf4j (instead of slf4j-jdk14).
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
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.
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");
}
}
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");
}
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.