/src/main/java/org/graylog2/database/MongoBridge.java

https://github.com/5v3n/graylog2-server · Java · 172 lines · 82 code · 27 blank · 63 comment · 16 complexity · 2c3f141702453113832f48ef9ed8f5a6 MD5 · raw file

  1. /**
  2. * Copyright 2010 Lennart Koopmann <lennart@socketfeed.com>
  3. *
  4. * This file is part of Graylog2.
  5. *
  6. * Graylog2 is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Graylog2 is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Graylog2. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package org.graylog2.database;
  21. import com.mongodb.DBCollection;
  22. import com.mongodb.BasicDBObject;
  23. import com.mongodb.BasicDBObjectBuilder;
  24. import org.graylog2.Log;
  25. import java.util.List;
  26. import org.graylog2.Main;
  27. import org.graylog2.messagehandlers.gelf.GELFMessage;
  28. import org.productivity.java.syslog4j.server.SyslogServerEventIF;
  29. /**
  30. * MongoBridge.java: Apr 13, 2010 9:13:03 PM
  31. *
  32. * Simple mapping methods to MongoDB.
  33. *
  34. * @author: Lennart Koopmann <lennart@socketfeed.com>
  35. */
  36. public class MongoBridge {
  37. /**
  38. * The standard MongoDB port.
  39. */
  40. public static final int STANDARD_PORT = 27017;
  41. /**
  42. * Get the messages collection. Lazily creates a new, capped one based on the
  43. * messages_collection_size from graylog2.conf if there is none.
  44. *
  45. * @return The messages collection
  46. */
  47. public DBCollection getMessagesColl() {
  48. DBCollection coll = null;
  49. // Create a capped collection if the collection does not yet exist.
  50. if(MongoConnection.getInstance().getDatabase().getCollectionNames().contains("messages")) {
  51. coll = MongoConnection.getInstance().getDatabase().getCollection("messages");
  52. } else {
  53. int messagesCollSize = Integer.parseInt(Main.masterConfig.getProperty("messages_collection_size").trim());
  54. coll = MongoConnection.getInstance().getDatabase().createCollection("messages", BasicDBObjectBuilder.start().add("capped", true).add("size", messagesCollSize).get());
  55. }
  56. coll.ensureIndex(new BasicDBObject("created_at", 1));
  57. coll.ensureIndex(new BasicDBObject("host", 1));
  58. coll.ensureIndex(new BasicDBObject("facility", 1));
  59. coll.ensureIndex(new BasicDBObject("level", 1));
  60. return coll;
  61. }
  62. /**
  63. * Inserts a Syslog message into the messages collection.
  64. *
  65. * @param event The syslog event/message
  66. * @throws Exception
  67. */
  68. public void insert(SyslogServerEventIF event) throws Exception {
  69. DBCollection coll = this.getMessagesColl();
  70. BasicDBObject dbObj = new BasicDBObject();
  71. dbObj.put("message", event.getMessage());
  72. dbObj.put("host", event.getHost());
  73. dbObj.put("facility", event.getFacility());
  74. dbObj.put("level", event.getLevel());
  75. dbObj.put("created_at", (int) (System.currentTimeMillis()/1000));
  76. coll.insert(dbObj);
  77. }
  78. /**
  79. * Inserts a GELF message into the messages collection.
  80. *
  81. * @param message The GELF message
  82. * @throws Exception
  83. */
  84. public void insertGelfMessage(GELFMessage message) throws Exception {
  85. // Check if all required parameters are set.
  86. if (message.shortMessage == null || message.shortMessage.length() == 0 || message.host == null || message.host.length() == 0) {
  87. throw new Exception("Missing GELF message parameters. short_message and host are required.");
  88. }
  89. DBCollection coll = this.getMessagesColl();
  90. BasicDBObject dbObj = new BasicDBObject();
  91. dbObj.put("gelf", true);
  92. dbObj.put("message", message.shortMessage);
  93. dbObj.put("full_message", message.fullMessage);
  94. dbObj.put("type", message.type);
  95. dbObj.put("file", message.file);
  96. dbObj.put("line", message.line);
  97. dbObj.put("host", message.host);
  98. dbObj.put("facility", null);
  99. dbObj.put("level", message.level);
  100. dbObj.put("created_at", (int) (System.currentTimeMillis()/1000));
  101. coll.insert(dbObj);
  102. }
  103. /**
  104. * Builds the "host" collection by distincting all hosts
  105. * from the messages table.
  106. *
  107. * @throws Exception
  108. */
  109. public void distinctHosts() throws Exception {
  110. // Fetch all hosts.
  111. DBCollection messages = this.getMessagesColl();
  112. List<String> hosts = messages.distinct("host");
  113. DBCollection coll = null;
  114. // Create a capped collection if the collection does not yet exist.
  115. if(MongoConnection.getInstance().getDatabase().getCollectionNames().contains("hosts")) {
  116. coll = MongoConnection.getInstance().getDatabase().getCollection("hosts");
  117. } else {
  118. coll = MongoConnection.getInstance().getDatabase().createCollection("hosts", new BasicDBObject());
  119. }
  120. coll.ensureIndex(new BasicDBObject("name", 1));
  121. // Truncate host collection.
  122. coll.remove(new BasicDBObject());
  123. // Go trough every host and insert.
  124. for (String host : hosts) {
  125. try {
  126. // Skip hosts with no name.
  127. if (host != null && host.length() > 0) {
  128. // Get message count of this host.
  129. BasicDBObject countQuery = new BasicDBObject();
  130. countQuery.put("host", host);
  131. long messageCount = messages.getCount(countQuery);
  132. // Build document.
  133. BasicDBObject doc = new BasicDBObject();
  134. doc.put("host", host);
  135. doc.put("message_count", messageCount);
  136. // Store document.
  137. coll.insert(doc);
  138. }
  139. } catch (Exception e) {
  140. Log.crit("Could not insert distinct host: " + e.toString());
  141. e.printStackTrace();
  142. }
  143. }
  144. }
  145. }