This project provides utilities to easily log data using Splunk's recommended best practices to any supported logger, using any of the three major Java logging frameworks (Logback, Log4J 2, and java.util.logging), to the HTTP Event Collector and to Splunk TCP inputs.
In particular, it provides:
- Appenders for HTTP Event Collector for pushing from Logback, Log4J 2 and java.util.logging.
- The
SplunkCimLogEvent
class, which encapsulates the CIM (Common Information Model) in Splunk Enterprise and best practices for semantic logging. - A TCP appender for Logback, which is the only one of the three frameworks listed above that doesn't provide native support for writing to TCP ports.
- Example configuration files for all three frameworks, showing how to configure them to write to Splunk TCP ports.
If you can, it is better to log to files and monitor them with a Splunk Universal Forwarder. This provides you with the features of the Universal Forwarder, and added robustness from having persistent files. However, there are situations where using a Universal Forwarder is not a possibility. In these cases, writing directly to a TCP input is a reasonable approach.
In either scenario, we recommend using the SplunkCimLogEvent
class
provided by this library to construct your log events according to Splunk's
recommended best practices.
All of the TCP appenders we show config files for (SocketHandler for java.util.logging, SocketAppender for Log4J 2, and the TCPAppender provided with this library for Logback) will attempt to reconnect in case of dropped connections.
You can use data cloning by providing multiple instances of your TCP handler in your logging configuration, each instance pointing to different indexers.
Rather than trying to reinvent load balancing across your indexers in your log configuration, set up a Splunk Universal Forwarder with a TCP input. Have all your logging sources write to that TCP input, and use the Universal Forwarder's load balancing features to distribute the data from there to a set of indexers.
Log4j and Logback are thread-safe.
HTTP Event Collector requires Splunk 6.3+. Splunk Java library supports sending
events through java.util.logging
, log4j
and logback
standard loggers.
In order to use HTTP Event Collector it has to be enabled on the server and an
application token should be created.
Splunk Logging for Java includes several examples of configuration files in
src/test/resources
folder. For instance java.util.logging
configuration looks like:
handlers=com.splunk.logging.HttpEventCollectorLoggingHandler
com.splunk.logging.HttpEventCollectorLoggingHandler.url=https://splunk-server:8088
com.splunk.logging.HttpEventCollectorLoggingHandler.token=<token-guid>
Sending events is simple:
Logger LOGGER = java.util.logging.Logger.getLogger("splunk.java.util");
LOGGER.info("hello world");
For more information, see http://dev.splunk.com/view/SP-CAAAE2K.
Splunk logging for Java is licensed under the Apache License 2.0.
Details can be found in the LICENSE file.
To use the Splunk Logging for Java library, you will need to add it and the
logging library you have chosen to use to your project, open a TCP input on a
Splunk instance to write your log events to, configure your logging system,
and then use the SplunkCimLogEvent
class to generate well formed log
entries.
-
Add the Splunk Logging for Java library to your project. If you are using Maven, add the following to your dependencies section:
<dependency> <groupId>com.splunk.logging</groupId> <artifactId>splunk-library-javalogging</artifactId> <version>1.5.2</version> </dependency>
You might also want to add the following repository to your repositories section:
<repository> <id>splunk</id> <name>splunk-releases</name> <url>http://splunk.artifactoryonline.com/splunk/ext-releases-local</url> </repository>
If you are using Ant, download the corresponding JAR file from http://dev.splunk.com/goto/sdk-slj.
-
Add the logging framework you plan to use. The three big ones in use today are Logback, Log4J 2.x, and java.util.logging (which comes with your JDK). If you are using Maven, add the corresponding dependencies below to your
pom.xml
:- Logback:
<dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.13</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.0.13</version> </dependency>
- Log4J 2.x:
<dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.0-beta9</version> </dependency>
- java.util.logging ships with the JDK.
-
Create a TCP input in Splunk that you will write to. To learn how, see Get data from TCP and UDP ports.
-
Configure your logging system. Here are simple example configurations for each of the three systems. The
log4j2.xml
andlogback.xml
files should be put somewhere in the classpath of your program. jdklogging.properties should be specified to your program by passing the following to the Java executable:-Djava.util.logging.config.file=/path/to/jdklogging.properties
- Logback (to be put in
logback.xml
on the classpath)
<configuration> <!-- You should send data to Splunk using TCP inputs. You can find the documentation on how to open TCP inputs on Splunk at http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports. Logback does not ship with a usable appender for TCP sockets (its SocketAppender serializes Java objects for deserialization by a server elsewhere). Instead, use the TcpAppender provided with this library. This example assumes that you have Splunk running on your local machine (127.0.0.1) with a TCP input configured on port 15000. Note that TCP inputs are *not* the same as Splunk's management port. You can control the format of what is logged by changing the encoder (see http://logback.qos.ch/manual/layouts.html#ClassicPatternLayout for details), but the pattern below produces a simple timestamp, followed by the full message and a newline, like the following: 2012-04-26 14:54:38,461 [%thread] %level text of my event --> <appender name="socket" class="com.splunk.logging.TcpAppender"> <RemoteHost>127.0.0.1</RemoteHost> <Port>15000</Port> <layout class="ch.qos.logback.classic.PatternLayout"> <pattern>%date{ISO8601} [%thread] %level: %msg%n</pattern> </layout> </appender> <logger name="splunk.logger" additivity="false" level="INFO"> <appender-ref ref="socket"/> </logger> <root level="INFO"> <appender-ref ref="socket"/> </root> </configuration>
- Log4j 2.x (to be put in
log4j2.xml
on the classpath)
<Configuration status="info" name="example" packages=""> <!-- Define an appender that writes to a TCP socket. We use Log4J's SocketAppender, which is documented at https://logging.apache.org/log4j/2.x/manual/appenders.html#SocketAppender. You can find the documentation on how to open TCP inputs on Splunk at http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports. Note that TCP inputs are *not* the same as Splunk's management port. --> <Appenders> <Socket name="socket" host="127.0.0.1" port="15000"> <PatternLayout pattern="%p: %m%n" charset="UTF-8"/> </Socket> </Appenders> <!-- Define a logger named 'splunk.logger' which writes to the socket appender we defined above. --> <Loggers> <Root level="INFO"> </Root> <Logger name="splunk.logger" level="info"> <AppenderRef ref="socket"/> </Logger> </Loggers> </Configuration>
- java.util.logging
# We will write to a Splunk TCP input using java.util.logging's # SocketHandler. This line sets it to be the default handler for # all loggers. handlers = java.util.logging.SocketHandler config = # Set the default logging level for the root logger .level = INFO # Implicitly create a logger called 'splunk.logger', set its # level to INFO, and make it log using the SocketHandler. splunk.logger.level = INFO splunk.logger.handlers = java.util.logging.SocketHandler # Configure the SocketHandler to write to TCP port localhost:15000. # Note that TCP inputs are *not* the same as Splunk's management # port. You can find the documentation about how to open TCP # inputs in Splunk at http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports. # # You can find the documentation on using a SocketHandler at http://docs.oracle.com/javase/7/docs/api/java/util/logging/SocketHandler.html. java.util.logging.SocketHandler.level = INFO java.util.logging.SocketHandler.host = localhost java.util.logging.SocketHandler.port = 15000 # With Java 7, you can set the format of SimpleFormatter. On Java 6, # you cannot and you will probably want to write a custom formatter # for your system. The syntax of the format string is given at # http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax # and http://docs.oracle.com/javase/7/docs/api/java/util/logging/SimpleFormatter.html # for logging specific behavior. java.util.logging.SocketHandler.formatter = SimpleFormatter java.util.logging.SimpleFormatter.format = "%1$F %1$r %4$s: %6$s%n"
- Logback (to be put in
-
Import
com.splunk.logging.SplunkCimLogEvent
and use it to create events. This example code uses Logback as the logger, but the part relevant toSplunkCimLogEvent
will be unchanged for other frameworks:logger.info(new SplunkCimLogEvent("Event name", "event-id") {{ // You can add an arbitrary key=value pair with addField. addField("name", "value"); // If you are logging exceptions, use addThrowable, which // does nice formatting. If ex is an exception you have caught // you would log it with addThrowableWithStacktrace(ex); // SplunkCimLogEvent provides lots of convenience methods for // fields defined by Splunk's Common Information Model. See // the SplunkCimLogEvent JavaDoc for a complete list. setAuthAction("deny"); }});
If you haven't already installed Splunk, download it here: http://www.splunk.com/download. For more about installing and running Splunk and system requirements, see Installing & Running Splunk.
Get the Splunk Java Logging Framework from GitHub and clone the resources to your computer. For example, use the following command:
git clone https://github.com/splunk/splunk-library-javalogging.git
Documentation for this library
Splunk Common Information Model
Splunk Best Practice Logging Semantics
Introduction to the Splunk product and some of its capabilities
You can reach the Dev Platform team at [email protected].