Java tutorial
/** * 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 net.logstash.logback.encoder; import ch.qos.logback.classic.spi.ILoggingEvent; import ch.qos.logback.core.encoder.EncoderBase; import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ObjectNode; import org.apache.commons.lang.time.FastDateFormat; import org.slf4j.Marker; import java.io.IOException; import java.util.Iterator; import java.util.Map; import static org.apache.commons.io.IOUtils.LINE_SEPARATOR; import static org.apache.commons.io.IOUtils.write; /*package*/ abstract class LogstashEncoderBase extends EncoderBase<ILoggingEvent> { protected static final ObjectMapper MAPPER = new ObjectMapper() .configure(JsonGenerator.Feature.ESCAPE_NON_ASCII, true); protected static final FastDateFormat ISO_DATETIME_TIME_ZONE_FORMAT_WITH_MILLIS = FastDateFormat .getInstance("yyyy-MM-dd'T'HH:mm:ss.SSSZZ"); private static final StackTraceElement DEFAULT_CALLER_DATA = new StackTraceElement("", "", "", 0); private boolean immediateFlush = true; /** * If true, the caller information is included in the logged data. * Note: calculating the caller data is an expensive operation. */ private boolean includeCallerInfo = true; protected ArrayNode createTags(ILoggingEvent event) { ArrayNode node = null; final Marker marker = event.getMarker(); if (marker != null) { node = MAPPER.createArrayNode(); node.add(marker.getName()); if (marker.hasReferences()) { final Iterator<?> i = event.getMarker().iterator(); while (i.hasNext()) { Marker next = (Marker) i.next(); // attached markers will never be null as provided by the MarkerFactory. node.add(next.getName()); } } } return node; } protected void addPropertiesAsFields(final ObjectNode fieldsNode, final Map<String, String> properties) { if (properties != null) { for (Map.Entry<String, String> entry : properties.entrySet()) { String key = entry.getKey(); String value = entry.getValue(); fieldsNode.put(key, value); } } } protected StackTraceElement extractCallerData(final ILoggingEvent event) { final StackTraceElement[] ste = event.getCallerData(); if (ste == null || ste.length == 0) { return DEFAULT_CALLER_DATA; } return ste[0]; } @Override public void close() throws IOException { write(LINE_SEPARATOR, outputStream); } public boolean isImmediateFlush() { return immediateFlush; } public void setImmediateFlush(boolean immediateFlush) { this.immediateFlush = immediateFlush; } public boolean isIncludeCallerInfo() { return includeCallerInfo; } public void setIncludeCallerInfo(boolean includeCallerInfo) { this.includeCallerInfo = includeCallerInfo; } }