Splitlog is a tool that helps you monitor log files from within Java applications. It allows you to listen for changes to the log files, to wait for particular content or to gather various statistics thereof.
This document will explain the basic concepts behind Splitlog and show you the most common examples for using Splitlog within your own application. Without further ado, let’s dive in.
In order to understand Splitlog, you should first learn about the basic building blocks of the tool. Worry not, it’s only a short list.
Watched files will be read line by line and these lines will be put together into a Message. A Message would typically look like this:
15:11:42,044 WARN [org.mylogger] (thread-1) This is a warning.
Alternately, Message can also span multiple lines, like this one containing an exception stack trace:
15:11:49,051 ERROR [org.mylogger] (thread-1) Some exception
at org.switchyard.internal.ServiceReferenceImpl.createExchange(ServiceReferenceImpl.java:118) [switchyard-runtime-1.1.1.jar:1.1.1]
You will not be notified of each line – but you will be notified every time another line is added to a Message, be it a new Message or a continuation of the previous one. The beginning and the end of each Message is determined by the Splitter, but more on that later.
And that’s it, folks! You can now start using Splitlog. Let’s see how.
Before we start, let’s make sure you have Splitlog on your Java classpath. Either include the uber jar or, preferably, use Maven:
<dependency> <groupId>com.github.triceo.splitlog</groupId> <artifactId>splitlog-core</artifactId> <version>1.7.0</version> </dependency>
Now that this is behind us, let us look at the simplest possible Splitlog use case:
File myLogFile = new File("server.log"); LogWatchBuilder builder = LogWatchBuilder.getDefault().watchingFile(myLogFile); LogWatch watch = builder.build(); Follower follower = watch.startFollowing(); // [snip] insert whatever code here [/snip] System.out.println(follower.getMessages());
You know what? Let’s take it line by line. Here, you tell Splitlog to prepare a LogWatch that would watch the file stored in the myLogFile variable:
LogWatchBuilder builder = LogWatchBuilder.getDefault().watchingFile(myLogFile);
Here, you actually retrieve this LogWatch:
LogWatch watch = builder.build();
And, to top it all off, you start following the file to start receiving notifications on new Messages. Based on the configuration of the LogWatch, it is possible that the LogWatch will only actually start watching the log now:
Follower follower = watch.startFollowing();
Now would be a good time to let Splitlog wait for some Messages to be read from the log. Here goes some code that your application actually needs to do while the logs are being filled with stuff. And, when it’s over, you can print every Message received in the meantime:
System.out.println(follower.getMessages());
What remains is to clean up.
follower.stop(); watch.terminate(); // this one will suffice
And that’s it. You’re done. But Splitlog offers much more?
Think you spotted a mistake in this document? A typo? Factual inaccuracy? Make an edit. Think of the legions of grateful users!