net.logstash.logback.marker.LogstashMarker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logstash-logback-encoder Show documentation
Show all versions of logstash-logback-encoder Show documentation
Provides logback encoders, layouts, and appenders to log in JSON and other formats supported by Jackson
/**
* 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.marker;
import java.io.IOException;
import org.slf4j.Marker;
import com.fasterxml.jackson.core.JsonGenerator;
/**
* A {@link Marker} that is known and understood by the logstash logback encoder.
*
* In particular these markers are used to write data into the logstash json event via {@link #writeTo(JsonGenerator)}.
*/
@SuppressWarnings("serial")
public abstract class LogstashMarker extends LogstashBasicMarker {
public static final String MARKER_NAME_PREFIX = "LS_";
public LogstashMarker(String name) {
super(name);
}
/**
* Adds the given marker as a reference, and returns this marker.
*
* This can be used to chain markers together fluently on a log line. For example:
*
*
* {@code
* import static net.logstash.logback.marker.Markers.*
*
* logger.info(append("name1", "value1).and(append("name2", "value2")), "log message");
* }
*
*/
@SuppressWarnings("unchecked")
public T and(Marker reference) {
add(reference);
return (T) this;
}
/**
* @deprecated Use {@link #and(Marker)} instead
* @see #and(Marker)
*/
@Deprecated
public T with(Marker reference) {
return and(reference);
}
/**
* Writes the data associated with this marker to the given {@link JsonGenerator}.
*/
public abstract void writeTo(JsonGenerator generator) throws IOException;
}