blob: f2485e45feda852d45b59d8722e82df5e3a08c7e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.logging.log4j.jackson.json.layout;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.apache.logging.log4j.core.Layout;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.config.Configuration;
import org.apache.logging.log4j.core.config.DefaultConfiguration;
import org.apache.logging.log4j.core.layout.PatternLayout;
import org.apache.logging.log4j.core.util.KeyValuePair;
import org.apache.logging.log4j.jackson.AbstractJacksonLayout;
import org.apache.logging.log4j.jackson.XmlConstants;
import org.apache.logging.log4j.plugins.Node;
import org.apache.logging.log4j.plugins.Plugin;
import org.apache.logging.log4j.plugins.PluginBuilderAttribute;
import org.apache.logging.log4j.plugins.PluginElement;
import org.apache.logging.log4j.plugins.PluginFactory;
import java.io.IOException;
import java.io.Writer;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
/**
* Appends a series of JSON events as strings serialized as bytes.
*
* <h3>Complete well-formed JSON vs. fragment JSON</h3>
* <p>
* If you configure {@code complete="true"}, the appender outputs a well-formed JSON document. By default, with
* {@code complete="false"}, you should include the output as an <em>external file</em> in a separate file to form a
* well-formed JSON document.
* </p>
* <p>
* If {@code complete="false"}, the appender does not write the JSON open array character "[" at the start
* of the document, "]" and the end, nor comma "," between records.
* </p>
* <h3>Encoding</h3>
* <p>
* Appenders using this layout should have their {@code charset} set to {@code UTF-8} or {@code UTF-16}, otherwise
* events containing non ASCII characters could result in corrupted log files.
* </p>
* <h3>Pretty vs. compact JSON</h3>
* <p>
* By default, the JSON layout is not compact (a.k.a. "pretty") with {@code compact="false"}, which means the
* appender uses end-of-line characters and indents lines to format the text. If {@code compact="true"}, then no
* end-of-line or indentation is used. Message content may contain, of course, escaped end-of-lines.
* </p>
* <h3>Additional Fields</h3>
* <p>
* This property allows addition of custom fields into generated JSON.
* {@code <JsonLayout><KeyValuePair key="foo" value="bar"/></JsonLayout>} inserts {@code "foo":"bar"} directly
* into JSON output. Supports Lookup expressions.
* </p>
*/
@Plugin(name = "JsonLayout", category = Node.CATEGORY, elementType = Layout.ELEMENT_TYPE, printObject = true)
public final class JsonLayout extends AbstractJacksonLayout {
public static class Builder<B extends Builder<B>> extends AbstractJacksonLayout.Builder<B>
implements org.apache.logging.log4j.plugins.util.Builder<JsonLayout> {
@PluginBuilderAttribute
private boolean propertiesAsList;
@PluginBuilderAttribute
private boolean objectMessageAsJsonObject;
@PluginElement("AdditionalField")
private KeyValuePair[] additionalFields;
public Builder() {
super();
setCharset(StandardCharsets.UTF_8);
}
@Override
public JsonLayout build() {
final boolean encodeThreadContextAsList = isProperties() && propertiesAsList;
final String headerPattern = toStringOrNull(getHeader());
final String footerPattern = toStringOrNull(getFooter());
return new JsonLayout(getConfiguration(), isLocationInfo(), isProperties(), encodeThreadContextAsList,
isComplete(), isCompact(), getEventEol(), getEndOfLine(), headerPattern, footerPattern, getCharset(),
isIncludeStacktrace(), isStacktraceAsString(), isIncludeNullDelimiter(), isIncludeTimeMillis(),
getAdditionalFields(), getObjectMessageAsJsonObject());
}
@Override
public KeyValuePair[] getAdditionalFields() {
return additionalFields;
}
public boolean getObjectMessageAsJsonObject() {
return objectMessageAsJsonObject;
}
public boolean isPropertiesAsList() {
return propertiesAsList;
}
@Override
public B setAdditionalFields(final KeyValuePair[] additionalFields) {
this.additionalFields = additionalFields;
return asBuilder();
}
public B setObjectMessageAsJsonObject(final boolean objectMessageAsJsonObject) {
this.objectMessageAsJsonObject = objectMessageAsJsonObject;
return asBuilder();
}
public B setPropertiesAsList(final boolean propertiesAsList) {
this.propertiesAsList = propertiesAsList;
return asBuilder();
}
}
@JsonRootName(XmlConstants.ELT_EVENT)
public static class JsonLogEventWithAdditionalFields extends LogEventWithAdditionalFields {
public JsonLogEventWithAdditionalFields(final LogEvent logEvent, final Map<String, String> additionalFields) {
super(logEvent, additionalFields);
}
@Override
@JsonAnyGetter
public Map<String, String> getAdditionalFields() {
return super.getAdditionalFields();
}
@Override
@JsonUnwrapped
@JsonSerialize(as = LogEvent.class)
public LogEvent getLogEvent() {
return super.getLogEvent();
}
}
private static final String DEFAULT_FOOTER = "]";
private static final String DEFAULT_HEADER = "[";
static final String CONTENT_TYPE = "application/json";
/**
* Creates a JSON Layout using the default settings. Useful for testing.
*
* @return A JSON Layout.
*/
public static JsonLayout createDefaultLayout() {
return new JsonLayout(new DefaultConfiguration(), false, false, false, false, false, false, null,
DEFAULT_HEADER, DEFAULT_FOOTER, StandardCharsets.UTF_8, true, false, false, false, null, false);
}
@PluginFactory
public static <B extends Builder<B>> B newBuilder() {
return new Builder<B>().asBuilder();
}
private JsonLayout(final Configuration config, final boolean locationInfo, final boolean properties,
final boolean encodeThreadContextAsList,
final boolean complete, final boolean compact, final boolean eventEol, final String endOfLine,
final String headerPattern, final String footerPattern, final Charset charset,
final boolean includeStacktrace, final boolean stacktraceAsString,
final boolean includeNullDelimiter, final boolean includeTimeMillis,
final KeyValuePair[] additionalFields, final boolean objectMessageAsJsonObject) {
super(config, new JsonJacksonFactory(encodeThreadContextAsList, includeStacktrace, stacktraceAsString, objectMessageAsJsonObject).newWriter(
locationInfo, properties, compact, includeTimeMillis),
charset, compact, complete, eventEol, endOfLine,
PatternLayout.newSerializerBuilder().setConfiguration(config).setPattern(headerPattern).setDefaultPattern(DEFAULT_HEADER).build(),
PatternLayout.newSerializerBuilder().setConfiguration(config).setPattern(footerPattern).setDefaultPattern(DEFAULT_FOOTER).build(),
includeNullDelimiter,
additionalFields);
}
@Override
protected LogEventWithAdditionalFields createLogEventWithAdditionalFields(final LogEvent event,
final Map<String, String> additionalFieldsMap) {
return new JsonLogEventWithAdditionalFields(event, additionalFieldsMap);
}
@Override
public Map<String, String> getContentFormat() {
final Map<String, String> result = new HashMap<>();
result.put("version", "2.0");
return result;
}
/**
* @return The content type.
*/
@Override
public String getContentType() {
return CONTENT_TYPE + "; charset=" + this.getCharset();
}
/**
* Returns appropriate JSON footer.
*
* @return a byte array containing the footer, closing the JSON array.
*/
@Override
public byte[] getFooter() {
if (!this.complete) {
return null;
}
final StringBuilder buf = new StringBuilder();
buf.append(this.eol);
final String str = serializeToString(getFooterSerializer());
if (str != null) {
buf.append(str);
}
buf.append(this.eol);
return getBytes(buf.toString());
}
/**
* Returns appropriate JSON header.
*
* @return a byte array containing the header, opening the JSON array.
*/
@Override
public byte[] getHeader() {
if (!this.complete) {
return null;
}
final StringBuilder buf = new StringBuilder();
final String str = serializeToString(getHeaderSerializer());
if (str != null) {
buf.append(str);
}
buf.append(this.eol);
return getBytes(buf.toString());
}
@Override
public void toSerializable(final LogEvent event, final Writer writer) throws IOException {
if (complete && eventCount > 0) {
writer.append(", ");
}
super.toSerializable(event, writer);
}
}