Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.86 KB | None | 0 0
  1. # Settings file in YAML
  2. #
  3. # Settings can be specified either in hierarchical form, e.g.:
  4. #
  5. # pipeline:
  6. # batch:
  7. # size: 125
  8. # delay: 5
  9. #
  10. # Or as flat keys:
  11. #
  12. # pipeline.batch.size: 125
  13. # pipeline.batch.delay: 5
  14. #
  15. # ------------ Node identity ------------
  16. #
  17. # Use a descriptive name for the node:
  18. #
  19. # node.name: test
  20. #
  21. # If omitted the node name will default to the machine's host name
  22. #
  23. # ------------ Data path ------------------
  24. #
  25. # Which directory should be used by logstash and its plugins
  26. # for any persistent needs. Defaults to LOGSTASH_HOME/data
  27. #
  28. #path.data: /var/lib/logstash
  29. #
  30. # ------------ Pipeline Settings --------------
  31. #
  32. # Set the number of workers that will, in parallel, execute the filters+outputs
  33. # stage of the pipeline.
  34. #
  35. # This defaults to the number of the host's CPU cores.
  36. #
  37. # pipeline.workers: 2
  38. #
  39. # How many workers should be used per output plugin instance
  40. #
  41. # pipeline.output.workers: 1
  42. #
  43. # How many events to retrieve from inputs before sending to filters+workers
  44. #
  45. # pipeline.batch.size: 125
  46. #
  47. # How long to wait before dispatching an undersized batch to filters+workers
  48. # Value is in milliseconds.
  49. #
  50. # pipeline.batch.delay: 5
  51. #
  52. # Force Logstash to exit during shutdown even if there are still inflight
  53. # events in memory. By default, logstash will refuse to quit until all
  54. # received events have been pushed to the outputs.
  55. #
  56. # WARNING: enabling this can lead to data loss during shutdown
  57. #
  58. # pipeline.unsafe_shutdown: false
  59. #
  60. # ------------ Pipeline Configuration Settings --------------
  61. #
  62. # Where to fetch the pipeline configuration for the main pipeline
  63. #
  64. path.config: /etc/logstash/conf.d
  65. #
  66. # Pipeline configuration string for the main pipeline
  67. #
  68. # config.string:
  69. #
  70. # At startup, test if the configuration is valid and exit (dry run)
  71. #
  72. # config.test_and_exit: false
  73. #
  74. # Periodically check if the configuration has changed and reload the pipeline
  75. # This can also be triggered manually through the SIGHUP signal
  76. #
  77. #config.reload.automatic: true
  78.  
  79. #
  80. # How often to check if the pipeline configuration has changed (in seconds)
  81. #
  82. config.reload.interval: 3
  83. #
  84. # Show fully compiled configuration as debug log message
  85. # NOTE: --log.level must be 'debug'
  86. #
  87. config.debug: true
  88. #
  89. # When enabled, process escaped characters such as \n and \" in strings in the
  90. # pipeline configuration files.
  91. #
  92. # config.support_escapes: false
  93. #
  94. # ------------ Module Settings ---------------
  95. # Define modules here. Modules definitions must be defined as an array.
  96. # The simple way to see this is to prepend each `name` with a `-`, and keep
  97. # all associated variables under the `name` they are associated with, and
  98. # above the next, like this:
  99. #
  100. # modules:
  101. # - name: MODULE_NAME
  102. # var.PLUGINTYPE1.PLUGINNAME1.KEY1: VALUE
  103. # var.PLUGINTYPE1.PLUGINNAME1.KEY2: VALUE
  104. # var.PLUGINTYPE2.PLUGINNAME1.KEY1: VALUE
  105. # var.PLUGINTYPE3.PLUGINNAME3.KEY1: VALUE
  106. #
  107. # Module variable names must be in the format of
  108. #
  109. # var.PLUGIN_TYPE.PLUGIN_NAME.KEY
  110. #
  111. # modules:
  112. #
  113. # ------------ Queuing Settings --------------
  114. #
  115. # Internal queuing model, "memory" for legacy in-memory based queuing and
  116. # "persisted" for disk-based acked queueing. Defaults is memory
  117. #
  118. # queue.type: memory
  119. #
  120. # If using queue.type: persisted, the directory path where the data files will be stored.
  121. # Default is path.data/queue
  122. #
  123. # path.queue:
  124. #
  125. # If using queue.type: persisted, the page data files size. The queue data consists of
  126. # append-only data files separated into pages. Default is 250mb
  127. #
  128. # queue.page_capacity: 250mb
  129. #
  130. # If using queue.type: persisted, the maximum number of unread events in the queue.
  131. # Default is 0 (unlimited)
  132. #
  133. # queue.max_events: 0
  134. #
  135. # If using queue.type: persisted, the total capacity of the queue in number of bytes.
  136. # If you would like more unacked events to be buffered in Logstash, you can increase the
  137. # capacity using this setting. Please make sure your disk drive has capacity greater than
  138. # the size specified here. If both max_bytes and max_events are specified, Logstash will pick
  139. # whichever criteria is reached first
  140. # Default is 1024mb or 1gb
  141. #
  142. # queue.max_bytes: 1024mb
  143. #
  144. # If using queue.type: persisted, the maximum number of acked events before forcing a checkpoint
  145. # Default is 1024, 0 for unlimited
  146. #
  147. # queue.checkpoint.acks: 1024
  148. #
  149. # If using queue.type: persisted, the maximum number of written events before forcing a checkpoint
  150. # Default is 1024, 0 for unlimited
  151. #
  152. # queue.checkpoint.writes: 1024
  153. #
  154. # If using queue.type: persisted, the interval in milliseconds when a checkpoint is forced on the head page
  155. # Default is 1000, 0 for no periodic checkpoint.
  156. #
  157. # queue.checkpoint.interval: 1000
  158. #
  159. # ------------ Dead-Letter Queue Settings --------------
  160. # Flag to turn on dead-letter queue.
  161. #
  162. # dead_letter_queue.enable: false
  163.  
  164. # If using dead_letter_queue.enable: true, the maximum size of each dead letter queue. Entries
  165. # will be dropped if they would increase the size of the dead letter queue beyond this setting.
  166. # Default is 1024mb
  167. # dead_letter_queue.max_bytes: 1024mb
  168.  
  169. # If using dead_letter_queue.enable: true, the directory path where the data files will be stored.
  170. # Default is path.data/dead_letter_queue
  171. #
  172. # path.dead_letter_queue:
  173. #
  174. # ------------ Metrics Settings --------------
  175. #
  176. # Bind address for the metrics REST endpoint
  177. #
  178. # http.host: "127.0.0.1"
  179. #
  180. # Bind port for the metrics REST endpoint, this option also accept a range
  181. # (9600-9700) and logstash will pick up the first available ports.
  182. #
  183. # http.port: 9600-9700
  184. #
  185. # ------------ Debugging Settings --------------
  186. #
  187. # Options for log.level:
  188. # * fatal
  189. # * error
  190. # * warn
  191. # * info (default)
  192. # * debug
  193. # * trace
  194. #
  195. log.level: debug
  196. path.logs: /var/log/logstash
  197. #
  198. # ------------ Other Settings --------------
  199. #
  200. # Where to find custom plugins
  201. # path.plugins: []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement