com.opentable.logging.JsonLogEncoder Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.opentable.logging;
import java.io.IOException;
import java.util.Map.Entry;
import java.util.concurrent.atomic.AtomicLong;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.core.JsonGenerator.Feature;
import com.fasterxml.jackson.core.util.ByteArrayBuilder;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import org.slf4j.Marker;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.core.encoder.EncoderBase;
import com.opentable.logging.otl.OtlMarker;
import com.opentable.logging.otl.OtlType;
/**
* This class encodes log fields as a JSON object, and writes each as a separate line to the outputStream.
*
* You can use this encoder by adding the following phrase to any appender:
*
* <encoder class="com.opentable.logging.JsonLogEncoder">
*
*/
public class JsonLogEncoder extends EncoderBase {
private static final byte[] NADA = new byte[0];
private static final AtomicLong LOG_SEQUENCE_NUMBER = new AtomicLong(0);
private final ObjectMapper mapper;
public JsonLogEncoder() {
// TODO: This sucks - - won't get the mapper customizations. Find a way to inject this.
// Master configuration is in otj-jackson
this.mapper = new ObjectMapper()
.registerModule(new JavaTimeModule())
.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false)
.disable(SerializationFeature.WRITE_NULL_MAP_VALUES)
.setSerializationInclusion(Include.NON_NULL)
.configure(Feature.AUTO_CLOSE_TARGET, false);
}
/**
* Prepare a log event but don't append it, return it as an ObjectNode instead.
*/
public ObjectNode convertToObjectNode(ILoggingEvent event) {
final ObjectNode logLine = mapper.valueToTree(
event instanceof OtlType ? event : new ApplicationLogEvent(event));
final Marker marker = event.getMarker();
if (marker instanceof LogMetadata) {
ObjectNode metadataNode = mapper.valueToTree(((LogMetadata) marker).getMetadata());
logLine.setAll(metadataNode);
for (Object o : ((LogMetadata) marker).getInlines()) {
metadataNode = mapper.valueToTree(o);
logLine.setAll(metadataNode);
}
}
if (marker instanceof OtlMarker) {
ObjectNode metadataNode = mapper.valueToTree(((OtlMarker) marker).getOtl());
logLine.setAll(metadataNode);
}
for (Entry e : event.getMDCPropertyMap().entrySet()) {
if (!logLine.has(e.getKey())) {
logLine.put(e.getKey(), e.getValue());
}
}
logLine.put("sequencenumber", LOG_SEQUENCE_NUMBER.incrementAndGet());
return logLine;
}
protected byte[] getLogMessage(final ObjectNode event) {
ByteArrayBuilder buf = new ByteArrayBuilder();
try {
mapper.writeValue(buf, event);
} catch (IOException e) {
addError("while serializing log event", e);
return NADA;
}
buf.append('\n');
return buf.toByteArray();
}
@Override
public byte[] headerBytes() {
return NADA;
}
@Override
public byte[] encode(ILoggingEvent event) {
return getLogMessage(convertToObjectNode(event));
}
@Override
public byte[] footerBytes() {
return NADA;
}
}