org.graylog2.GelfMessageProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gelfj Show documentation
Show all versions of gelfj Show documentation
GELF implementation in Java and log4j appender without any dependencies.
The newest version!
package org.graylog2;
import java.util.Map;
public interface GelfMessageProvider {
public boolean isExtractStacktrace();
public String getOriginHost();
public String getFacility();
public Map getFields();
public boolean isAddExtendedInformation();
public boolean isIncludeLocation();
public Object transformExtendedField(String field, Object object);
}