/splunk/com/splunk/modularinput/Event.java

http://github.com/splunk/splunk-sdk-java · Java · 304 lines · 102 code · 31 blank · 171 comment · 9 complexity · a9a81ee21600650efd30a325cbbcaaa6 MD5 · raw file

  1. /*
  2. * Copyright 2013 Splunk, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"): you may
  5. * not use this file except in compliance with the License. You may obtain
  6. * a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations
  14. * under the License.
  15. */
  16. package com.splunk.modularinput;
  17. import javax.xml.stream.XMLStreamException;
  18. import javax.xml.stream.XMLStreamWriter;
  19. import java.util.Date;
  20. /**
  21. * The {@code Event} class represents an event or fragment of an event to be written by this modular input to Splunk.
  22. *
  23. * To write an {@code Event} to an XML stream, call its {@code writeTo} method with an {@code XMLStreamWriter} object to write to.
  24. * The {@code Event} must have at least the data field set or {@code writeTo} will throw a {@code MalformedDataException}. All other
  25. * fields are optional. If you omit the time field, the {@code writeTo} method will fill in the current time when it is called.
  26. *
  27. * Typically, you will also want to call {@code setStanza} to specify which instance of the modular input kind this event
  28. * should go to, {@code setTime} to set the timestamp, and {@code setSource}, {@code setHost}, and {@code setSourceType}
  29. * specify where this event came from.
  30. */
  31. public class Event {
  32. protected Date time = null;
  33. protected String data;
  34. protected String source = null;
  35. protected String sourceType = null;
  36. protected String index = null;
  37. protected String host = null;
  38. protected boolean done = true;
  39. protected boolean unbroken = true;
  40. protected String stanza = null;
  41. public Event() {}
  42. // Helper method to write a single field to an XMLStreamWriter object only if it is not null.
  43. protected void writeFieldTo(XMLStreamWriter out, String name, String value) throws XMLStreamException {
  44. if (value != null) {
  45. out.writeStartElement(name);
  46. out.writeCharacters(value);
  47. out.writeEndElement();
  48. }
  49. }
  50. /**
  51. * Writes this event to the given {@code XMLStreamWriter}.
  52. *
  53. * @param out The {@code XMLStreamWriter} to append to.
  54. * @throws XMLStreamException if there is a problem in the {@code XMLStreamWriter}.
  55. * @throws MalformedDataException if you have not specified data for this event.
  56. */
  57. public void writeTo(XMLStreamWriter out) throws XMLStreamException, MalformedDataException {
  58. if (data == null) {
  59. throw new MalformedDataException("Events must have at least the data field set to be written to XML.");
  60. }
  61. out.writeStartElement("event");
  62. if (getStanza() != null) {
  63. out.writeAttribute("stanza", getStanza());
  64. }
  65. out.writeAttribute("unbroken", isUnbroken() ? "1" : "0");
  66. if (this.time != null) {
  67. writeFieldTo(out, "time", String.format("%.3f", time.getTime() / 1000D));
  68. }
  69. writeFieldTo(out, "source", getSource());
  70. writeFieldTo(out, "sourcetype", getSourceType());
  71. writeFieldTo(out, "index", getIndex());
  72. writeFieldTo(out, "host", getHost());
  73. writeFieldTo(out, "data", getData());
  74. if (isDone()) {
  75. out.writeStartElement("done");
  76. out.writeEndElement();
  77. }
  78. out.writeEndElement();
  79. out.writeCharacters("\r\n");
  80. out.flush();
  81. }
  82. /**
  83. * Gets a {@code java.util.Date} object giving the timestamp that should be sent with this event. If this field is null,
  84. * Splunk will assign the time at which the event is indexed as its timestamp.
  85. *
  86. * @return A {@code java.util.Date} object giving the time assigned to this Event, or null if Splunk should apply a default
  87. * timestamp.
  88. */
  89. public Date getTime() {
  90. return this.time;
  91. }
  92. /**
  93. * Sets a {@code java.util.Date} object giving the timestamp that should be sent with this event. If this field is null,
  94. * Splunk will assign the time at which the event is indexed as its timestamp.
  95. *
  96. * @param time The {@code java.util.Date} which should be used as this event's timestamp, or null to have Splunk use a
  97. * default timestamp.
  98. */
  99. public void setTime(Date time) {
  100. this.time = time;
  101. }
  102. /**
  103. * Gets the text of the event that Splunk should index.
  104. *
  105. * @return A String containing the event text.
  106. */
  107. public String getData() {
  108. return this.data;
  109. }
  110. /**
  111. * Sets the text of the event that Splunk should index.
  112. *
  113. * @param data A String containing the event text.
  114. */
  115. public void setData(String data) {
  116. this.data = data;
  117. }
  118. /**
  119. * Gets the file, service, or other producer that this {@code Event} comes from. For lines in log files, it is
  120. * typically the full path to the log file. If it is omitted, Splunk will guess a sensible name for the source.
  121. *
  122. * @return A String giving the source of this event, or null to have Splunk guess.
  123. */
  124. public String getSource() {
  125. return this.source;
  126. }
  127. /**
  128. * Sets the file, service, or other producer that this {@code Event} comes from. For lines in log files, it is
  129. * typically the full path to the log file. If it is omitted, Splunk will guess a sensible name for the source.
  130. *
  131. * @param source A String to be used as the source of this event, or null to have Splunk guess.
  132. */
  133. public void setSource(String source) {
  134. this.source = source;
  135. }
  136. /**
  137. * Gets a classification of this event. For example, all different web server logs might be assigned
  138. * the same source type, or different source types can be assigned to distinct classes of events that all have
  139. * the same source. If it is omitted, Splunk will guess a sensible name for the source type.
  140. *
  141. * @return The source type currently set on this event, or null if Splunk is to guess a source.
  142. */
  143. public String getSourceType() {
  144. return this.sourceType;
  145. }
  146. /**
  147. * Sets a classification of this event. For example, all different web server logs might be assigned
  148. * the same source type, or different source types can be assigned to distinct classes of events that all have
  149. * the same source. If this field is omitted, Splunk will make a guess as to the source type.
  150. *
  151. * @param sourceType A String to use as the source type for this event, or null to have Splunk guess.
  152. */
  153. public void setSourceType(String sourceType) {
  154. this.sourceType = sourceType;
  155. }
  156. /**
  157. * Gets an index field specifying which index Splunk should write this event to. If it is omitted, Splunk has a default
  158. * index where events will be written.
  159. *
  160. * @return The index this event is specified to write to, or null if it will be written to the default index.
  161. */
  162. public String getIndex() {
  163. return this.index;
  164. }
  165. /**
  166. * Sets an index field specifying which index Splunk should write this event to. If it is omitted, Splunk has a default
  167. * index where events will be written.
  168. *
  169. * @param index The name of the index to write to, or null to have Splunk write to the default index.
  170. */
  171. public void setIndex(String index) {
  172. this.index = index;
  173. }
  174. /**
  175. * Gets a host specifying the name of the network host on which this event was produced. If it is omitted, Splunk will use
  176. * the host from which it directly received the event.
  177. *
  178. * @return A String giving the host name of the event source, or null to use the host Splunk receives the event from.
  179. */
  180. public String getHost() {
  181. return this.host;
  182. }
  183. /**
  184. * Sets a host specifying the name of the network host on which this event was produced. If it is omitted, Splunk will use
  185. * the host from which it directly received the event.
  186. *
  187. * @param host A String giving the host name of the event source, or null to use the host Splunk receives
  188. * the event from.
  189. */
  190. public void setHost(String host) {
  191. this.host = host;
  192. }
  193. /**
  194. * Sets a value indicating whether this is the last piece of an event broken across multiple {@code Event} objects.
  195. *
  196. * Splunk allows events from modular inputs to be sent in pieces. For example, if lines of an event become available
  197. * one at a time, they can be sent (in events with {@code setUnbroken(false)} called on them) as hunks. At the end of the
  198. * event, you must manually tell Splunk to break after this hunk by setting done to true. Then the next event
  199. * received will be taken to be part of another event.
  200. *
  201. * By default, done is {@code true} and unbroken is {@code true}, so if you do not touch these fields, you will send one complete
  202. * event per {@code Event} object.
  203. *
  204. * @param done Is this the last hunk of an event broken across multiple {@code Event} objects?
  205. */
  206. public void setDone(boolean done) {
  207. this.done = done;
  208. }
  209. /**
  210. * Gets a value indicating whether this is the last piece of an event broken across multiple {@code Event} objects.
  211. *
  212. * Splunk allows events from modular inputs to be sent in pieces. For example, if lines of an event become available
  213. * one at a time, they can be sent (in events with setUnbroken(false) called on them) as hunks. At the end of the
  214. * event, you must manually tell Splunk to break after this hunk by setting done to true. Then the next event
  215. * received will be taken to be part of another event.
  216. *
  217. * By default, done is {@code true} and unbroken is {@code true}, so if you do not touch these fields, you will send one complete
  218. * event per {@code Event} object.
  219. *
  220. * @return Is this the last hunk of an event broken across multiple {@code Event} objects?
  221. */
  222. public boolean isDone() {
  223. return this.done;
  224. }
  225. /**
  226. * Sets a value indicating whether this event is completely encapsulated in this {@code Event} object.
  227. *
  228. * Splunk allows events from modular inputs to be sent in pieces. If unbroken is set to {@code true}, then this event is
  229. * assumed to be a complete event, not a piece of one. By default, unbroken is {@code true}. If you set unbroken to {@code false},
  230. * you need to call {@code setDone(true)} on the last hunk of the complete event for Splunk to know to terminate it.
  231. *
  232. * @param unbroken Is this event completely encapsulated in this {@code Event} object?
  233. */
  234. public void setUnbroken(boolean unbroken) {
  235. this.unbroken = unbroken;
  236. }
  237. /**
  238. * Gets a value indicating whether this event is completely encapsulated in this {@code Event} object.
  239. *
  240. * Splunk allows events from modular inputs to be sent in pieces. If unbroken is set to {@code true}, then this event is
  241. * assumed to be a complete event, not a piece of one. By default, unbroken is {@code true}. If you set unbroken to {@code false},
  242. * you need to call {@code setDone(true)} on the last hunk of the complete event for Splunk to know to terminate it.
  243. *
  244. * @return Is this event completely encapsulated in this {@code Event} object?
  245. */
  246. public boolean isUnbroken() {
  247. return this.unbroken;
  248. }
  249. /**
  250. * Gets the name of the input this event should be sent to.
  251. *
  252. * A single modular input script can feed events to multiple instances of the modular input. In this case, each
  253. * event must be marked with the name of the input it should be sent to. This is also the name of the configuration
  254. * stanza that describes that input.
  255. *
  256. * @return The name of the input this event should be sent to.
  257. */
  258. public String getStanza() {
  259. return this.stanza;
  260. }
  261. /**
  262. * Sets the name of the input this event should be sent to.
  263. *
  264. * A single modular input script can feed events to multiple instances of the modular input. In this case, each
  265. * event must be marked with the name of the input it should be sent to. This is also the name of the configuration
  266. * stanza that describes that input.
  267. *
  268. * @param stanza The name of the input this event should be sent to.
  269. */
  270. public void setStanza(String stanza) {
  271. this.stanza = stanza;
  272. }
  273. }