This is master thesis project at Masaryk University Faculty of Informatics under supervision of Daniel Tovarňák (xdanos). This project is based on project ngmon-structlog-java-fal, which supports structured logging in Java using so-called Variable Contexts (see Daniel's dissertation thesis, Chapter 3).
add dependency to your project
<dependency>
<groupId>com.github.structlogging</groupId>
<artifactId>structlogger</artifactId>
<version>${structlogger.version}</version>
</dependency>
then you should set compiler argument schemasRoot
in order to set path where schemas are generated, also you can set package (namespace) for auto generated events using compiler argument generatedEventsPackage
, which takes qualified package (dot notation, e.g. com.github.structlogging). You can set compiler arguments using maven-compiler-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-AschemasRoot=${project.basedir}</arg>
<arg>-AgeneratedEventsPackage=${generatedEventsPackage}</arg>
</compilerArgs>
</configuration>
</plugin>
in your java code you can then declare fields like this:
@LoggerContext(context = DefaultContext.class)
private static StructLogger<DefaultContext> logger = new StructLogger<>(new Slf4jLoggingCallback(LoggerFactory.getLogger("LOGGER")));
StructLogger takes implementation of LoggingCallback, which implements basic logging operations, for example here we use Slf4jLoggingCallback, which encapsulates SLF4j logger and all it does is it serializes incoming events as string and pass them to SLF4j logger, or you can implement your own LoggingCallback
StructLogger field has to be annotated with @LoggerContext
in order to structured logging to work, you have to also specify extension of VariableContext as annotation parameter (this parameter must be same as generic argument of StructLogger otherwise you will encounter undefined behaviour). Variable context provides logging variables. You can create your own VariableContext like BlockCacheContext. Please see Creating your own Variable context section of README.
this declared logger can then be used for logging in structured way like this:
logger.info("Event with double={} and boolean={}")
.varDouble(1.2)
.varBoolean(false)
.log();
this structured log statement will generate json like this:
{
"type":"auto.Event677947de",
"timestamp":1524037512388,
"context":{
"message":"Event with double=1.2 and boolean=false",
"sourceFile":"com.github.structlogging.Example",
"lineNumber":66,
"sid":1,
"logLevel":"INFO"
},
"varDouble":1.2,
"varBoolean":false
}
or you can choose your own name of generated event by passing String literal as argument to log method like this:
logger.info("Event with double={} and boolean={}")
.varDouble(1.2)
.varBoolean(false)
.log("edu.TestEvent");
Beware that you cannot pass String containing white spaces or new lines, such String will generate compilation error. This String literal has to be in format FQDN in Java (for example edu.TestEvent
, cz.muni.TestEvent
, TestEvent
, ...)
this will generate event like this:
{
"type":"edu.TestEvent",
"timestamp":1524037512388,
"context":{
"message":"Event with double=1.2 and boolean=false",
"sourceFile":"com.github.structlogging.Example",
"lineNumber":71,
"sid":2,
"logLevel":"INFO"
},
"varDouble":1.2,
"varBoolean":false
}
Logging events such as these are send to the specified LoggingCallback
implementation to correct method representing log level
on which event was send (in this example it is INFO
)
For each generated structured logging event there is corresponding json schema created during compilation on path specified by compiler argument schemasRoot
in folder schemas/events
and each event with namespace is nested in corresponding folder,
For example:
logger.info("Event with double={} and boolean={}")
.varDouble(1.2)
.varBoolean(false)
.log("edu.TestEvent");
will create json schema ${schemasRoot}/schemas/events/edu/TestEvent.json
{
"type" : "object",
"id" : "urn:jsonschema:edu:TestEvent",
"$schema" : "http://json-schema.org/draft-04/schema#",
"description" : "Event with double={} and boolean={}",
"title" : "edu.TestEvent",
"properties" : {
"type" : {
"type" : "string"
},
"timestamp" : {
"type" : "integer"
},
"context" : {
"type" : "object",
"id" : "urn:jsonschema:com:github:structlogging:LoggingEventContext",
"properties" : {
"message" : {
"type" : "string"
},
"sourceFile" : {
"type" : "string"
},
"lineNumber" : {
"type" : "integer"
},
"sid" : {
"type" : "integer"
},
"logLevel" : {
"type" : "string"
}
}
},
"varDouble" : {
"type" : "number"
},
"varBoolean" : {
"type" : "boolean"
}
}
}
see example where schemas are created after compilation in root of this module
If schemasRoot
compiler argument is not specified, no schemas will be created!
Variable context is interface which provides parameters to be used in structured logging by StructLogger. To implement your own VariableContext,
create new interface which extends VariableContext and only extends this interface,
annotate your interface with @VarContextProvider, then add methods annotated with @Var,
these methods should all have return type your Interface and accept single parameter, please not that method overloading is not supported.
also these method names are prohibited: info
, debug
, error
, warn
, trace
, audit
, infoEvent
, debugEvent
, errorEvent
, warnEvent
, traceEvent
, auditEvent
,log
,context
, timestamp
,type
.
For example of custom Variable context see BlockCacheContext.
Also note that your custom VariableContext is checked whether it is valid only lazily, when it is used.
@VarContextProvider has parameter called parametrization
, which when set to true
forces constraints on log message such that log message (String in info
,debug
,... method) must contain {}
placeholders same count as parameters used in given log statement, for example
logger.info("test {} string literal {}")
.varDouble(1.2)
.varBoolean(false)
.log();
must contain two {}
placeholders, because we are using two parameters here varDouble
and varBoolean
, these placeholders are at runtime replaced with values passed as argument to log parameters, so here it will create event message will look like this test 1.2 string literal false
.
If parametrization
is set to false, no placeholder {}
is replaced in log message and no placeholders are enforced in log message during compilation
There are some restrictions due to the way this library is implemented. Please note that:
- StructLogger should not be declared and cannot be used as local variable
- StructLogger field should be only referenced within class where it is declared
- StructLogger field should be referenced directly (not via some access method or something like that).
- StructLogger field name should not be shadowed by any local variable
tests of structlogger API and annotation processor are located in structlogger-tests module
You can use EventTypeAwareKafkaCallback to send events asynchronously to topics using provided Producer, just provide in your project dependency on kafka-clients
, for example like this:
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>1.0.0</version>
</dependency>
Events are send with keys corresponding to system time in milliseconds, events are send to topics based on event type.