This library provides Log4J Appenders [1] that write log events to the MongoDB document oriented database [2].
- MongoDbAppender - Stores a BSONified version of the Log4J LoggingEvent
- MongoDbPatternLayoutAppender - Uses standard Log4J pattern layout, parser and converter classes to store a log message as a custom-formatted document
More details are at the Project site
Peter Monks ([email protected])
- Jozef Sevcik ([email protected])
- Robert Stewart ([email protected])
- Zach Bailey ([email protected])
- Gabriel Eisbruch ([email protected])
- JDK 1.5+
- MongoDB Server v1.6+ (tested with 1.6.3 and 1.7.3)
- MongoDB Java Driver v2.0+, but not 2.2 (tested with 2.1 and 2.3)
- Log4J 1.2+ (tested with 1.2.16 - note: tests won't work on earlier versions due to log4j API changes)
- Privateer (used in unit tests - a copy is in the lib dir, in case you can't get it from the central Maven repo)
- Version 0.3.2 of log4mongo-java will work with MongoDB Java driver versions only up to 2.0. The 2.1 driver includes a source compatible, but binary incompatible, change to a DBCollection.insert() method used by log4mongo-java.
- The MongoDB Java driver 2.2 includes a bug that causes a NullPointerException if you run mongod not in a replica set configuration. The bug was fixed in the 2.3 driver.
-
Start local MongoDB servers running as replica set. This is required for the replica set part of the unit tests. The --smallfiles arg makes the unit tests run about twice as fast, since databases are created and dropped several times, though it generally should not be used in production. $ mkdir -p /data/r0 $ mkdir -p /data/r1 $ mkdir -p /data/r2 $ mongod --replSet foo --smallfiles --port 27017 --dbpath /data/r0 $ mongod --replSet foo --smallfiles --port 27018 --dbpath /data/r1 $ mongod --replSet foo --smallfiles --port 27019 --dbpath /data/r2
-
If this it the first time you have set up this replica set, then initiate it from the mongo shell: $ mongo > config = {"_id": "foo", members:[{_id: 0, host: 'localhost:27017'},{_id: 1, host: 'localhost:27018'},{_id: 2, host: 'localhost:27019', arbiterOnly: true}]} > rs.initiate(config)
-
Wait about a minute until the replica set is established. You can run rs.status() in the mongo shell to look for direct confirmation.
-
Build the JAR file using Maven2. This will run all the unit tests. $ mvn clean package
-
Deploy the target/log4mongo-java-x.y.jar file, along with the Log4J and MongoDB Java Driver jars, into the classpath of your Java application
-
Configure log4j as usual, referring to the log4j.properties.sample file for the specific configuration properties the appender supports
The TestMongoDbAppenderHosts test case tests replica sets. See notes in that test case for starting multiple mongod instances as a replica set.
-
More unit tests
- connection failures
-
Clean up BSONification code - currently it's functional but skanky. Consider using daybreak for this [4].
MongoDB (actually BSON) supports datetimes as a native data type [5] and all drivers are supposed to handle conversion from client-native date type (java.util.Date in Java) to BSON representation of date in miliseconds since the Unix epoch.
However, MongoDB built-in console (bin/mongo) does represent dates formatted, even the dates were saved in native data type, which may be confusing [6]. See testTimestampStoredNatively in tests (TestMongoDbAppender.java) if you want to get an idea.
- [1] http://logging.apache.org/log4j/1.2/index.html
- [2] http://www.mongodb.org/
- [3] http://github.com/mongodb/mongo-java-driver/downloads
- [4] http://github.com/maxaf/daybreak
- [5] http://bsonspec.org/#/specification
- [6] http://groups.google.com/group/mongodb-user/browse_thread/thread/e59cbc8c9ba30411/af061b4bdbce5287