kamon-logback
The kamon-logback module requires you to start your application using the AspectJ Weaver Agent.
Getting Started
Kamon Logback is currently available for Scala 2.10, 2.11 and 2.12.
Supported releases and dependencies are shown below.
kamon | status | jdk | scala |
---|---|---|---|
1.0.6 | stable | 1.8+ | 2.10, 2.11, 2.12 |
To get started with SBT, simply add the following to your build.sbt
or pom.xml
file:
libraryDependencies += "io.kamon" %% "kamon-logback" % "1.0.6"
<dependency>
<groupId>io.kamon</groupId>
<artifactId>kamon-logback_2.12</artifactId>
<version>1.0.6</version>
</dependency>
Logging TraceID
Inserting a conversionRule
allows you to incorporate the trace ID for a request into your Logback layout. Here is a simple example logback.xml
configuration that does this:
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="false" debug="false">
<conversionRule conversionWord="traceID" converterClass="kamon.instrumentation.logback.tools.LogbackTraceIDConverter" />
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} | %-5level | %traceID | %c{0} -> %m%n</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="STDOUT" />
</root>
</configuration>
Propagating TraceID to AsyncAppender
If you choose to use AsyncAppender
, your trace ID will automatically be propagated to the thread where the log is actually published. No configuration needed. The same applies for the span ID. You can use them in the logback pattern like this:
<pattern>%d{yyyy-MM-dd HH:mm:ss} | %-5level | %X{kamonTraceID} | %X{kamonSpanID} | %c{0} -> %m%n</pattern>
You can also add custom values to MDC. To do this, simply add the key value in the library configuration:
kamon.logback.mdc-traced-local-keys = [ userID ].
kamon.logback.mdc-traced-broadcast-keys = [ requestID ]
Then, add the value to the kamon context:
Context
.create(Span.Key, span)
.withKey(Key.broadcastString("userID"), Some("user-1"))
.withKey(Key.local[Option[String]("requestID", None), Some("request-id") {
// loggers called in this context will have access to the userID, requestID
}
Note: While in Kamon you can have one local key and one broadcast key with the same name, in MDC this is not possible. In this case only the broadcast key will be stored in MDC (will be present in the logs)
Counting Log Entries
Sometimes you need to know how many log entries your application produce as a Kamon counter, in order to easily visualize that information, and more important, be able to alert on those metrics.
This library allows you to do that by just changing the logback.xml file and adding a simple appender, please notice the appender called COUNTER:
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="false" debug="false">
<conversionRule conversionWord="traceID" converterClass="kamon.logback.LogbackTraceIDConverter" />
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} | %-5level | %traceID | %c{0} -> %m%n</pattern>
</encoder>
</appender>
<appender name="COUNTER" class="kamon.instrumentation.logback.LogbackEntriesCounterAppender"/>
<root level="DEBUG">
<appender-ref ref="STDOUT" />
<appender-ref ref="COUNTER" />
</root>
</configuration>
The Kamon counter is named "log.events", and is refined with the tags:
"level" → "ERROR", "WARN", "INFO", "DEBUG", "TRACE" (One of those values, is the level of the event.)
"component" → "logback" (Always this value)