Guest User

Untitled

a guest
Apr 11th, 2018
229
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: false
  78. #
  79. # How often to check if the pipeline configuration has changed (in seconds)
  80. #
  81. # config.reload.interval: 3
  82. #
  83. # Show fully compiled configuration as debug log message
  84. # NOTE: --log.level must be 'debug'
  85. #
  86. # config.debug: false
  87. #
  88. # When enabled, process escaped characters such as \n and \" in strings in the
  89. # pipeline configuration files.
  90. #
  91. # config.support_escapes: false
  92. #
  93. # ------------ Module Settings ---------------
  94. # Define modules here. Modules definitions must be defined as an array.
  95. # The simple way to see this is to prepend each `name` with a `-`, and keep
  96. # all associated variables under the `name` they are associated with, and
  97. # above the next, like this:
  98. #
  99. # modules:
  100. # - name: MODULE_NAME
  101. # var.PLUGINTYPE1.PLUGINNAME1.KEY1: VALUE
  102. # var.PLUGINTYPE1.PLUGINNAME1.KEY2: VALUE
  103. # var.PLUGINTYPE2.PLUGINNAME1.KEY1: VALUE
  104. # var.PLUGINTYPE3.PLUGINNAME3.KEY1: VALUE
  105. #
  106. # Module variable names must be in the format of
  107. #
  108. # var.PLUGIN_TYPE.PLUGIN_NAME.KEY
  109. #
  110. # modules:
  111. #
  112. # ------------ Queuing Settings --------------
  113. #
  114. # Internal queuing model, "memory" for legacy in-memory based queuing and
  115. # "persisted" for disk-based acked queueing. Defaults is memory
  116. #
  117. # queue.type: memory
  118. #
  119. # If using queue.type: persisted, the directory path where the data files will be stored.
  120. # Default is path.data/queue
  121. #
  122. # path.queue:
  123. #
  124. # If using queue.type: persisted, the page data files size. The queue data consists of
  125. # append-only data files separated into pages. Default is 250mb
  126. #
  127. # queue.page_capacity: 250mb
  128. #
  129. # If using queue.type: persisted, the maximum number of unread events in the queue.
  130. # Default is 0 (unlimited)
  131. #
  132. # queue.max_events: 0
  133. #
  134. # If using queue.type: persisted, the total capacity of the queue in number of bytes.
  135. # If you would like more unacked events to be buffered in Logstash, you can increase the
  136. # capacity using this setting. Please make sure your disk drive has capacity greater than
  137. # the size specified here. If both max_bytes and max_events are specified, Logstash will pick
  138. # whichever criteria is reached first
  139. # Default is 1024mb or 1gb
  140. #
  141. # queue.max_bytes: 1024mb
  142. #
  143. # If using queue.type: persisted, the maximum number of acked events before forcing a checkpoint
  144. # Default is 1024, 0 for unlimited
  145. #
  146. # queue.checkpoint.acks: 1024
  147. #
  148. # If using queue.type: persisted, the maximum number of written events before forcing a checkpoint
  149. # Default is 1024, 0 for unlimited
  150. #
  151. # queue.checkpoint.writes: 1024
  152. #
  153. # If using queue.type: persisted, the interval in milliseconds when a checkpoint is forced on the head page
  154. # Default is 1000, 0 for no periodic checkpoint.
  155. #
  156. # queue.checkpoint.interval: 1000
  157. #
  158. # ------------ Dead-Letter Queue Settings --------------
  159. # Flag to turn on dead-letter queue.
  160. #
  161. # dead_letter_queue.enable: false
  162.  
  163. # If using dead_letter_queue.enable: true, the maximum size of each dead letter queue. Entries
  164. # will be dropped if they would increase the size of the dead letter queue beyond this setting.
  165. # Default is 1024mb
  166. # dead_letter_queue.max_bytes: 1024mb
  167.  
  168. # If using dead_letter_queue.enable: true, the directory path where the data files will be stored.
  169. # Default is path.data/dead_letter_queue
  170. #
  171. # path.dead_letter_queue:
  172. #
  173. # ------------ Metrics Settings --------------
  174. #
  175. # Bind address for the metrics REST endpoint
  176. #
  177. # http.host: "127.0.0.1"
  178. #
  179. # Bind port for the metrics REST endpoint, this option also accept a range
  180. # (9600-9700) and logstash will pick up the first available ports.
  181. #
  182. # http.port: 9600-9700
  183. #
  184. # ------------ Debugging Settings --------------
  185. #
  186. # Options for log.level:
  187. # * fatal
  188. # * error
  189. # * warn
  190. # * info (default)
  191. # * debug
  192. # * trace
  193. #
  194. # log.level: info
  195. path.logs: /var/log/logstash
  196. #
  197. # ------------ Other Settings --------------
  198. #
  199. # Where to find custom plugins
  200. # path.plugins: []
Add Comment
Please, Sign In to add comment