Guest User

Untitled

a guest
Feb 6th, 2017
1,117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 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. # ------------ Queuing Settings --------------
  89. #
  90. # Internal queuing model, "memory" for legacy in-memory based queuing and
  91. # "persisted" for disk-based acked queueing. Defaults is memory
  92. #
  93. # queue.type: memory
  94. #
  95. # If using queue.type: persisted, the directory path where the data files will be stored.
  96. # Default is path.data/queue
  97. #
  98. # path.queue:
  99. #
  100. # If using queue.type: persisted, the page data files size. The queue data consists of
  101. # append-only data files separated into pages. Default is 250mb
  102. #
  103. # queue.page_capacity: 250mb
  104. #
  105. # If using queue.type: persisted, the maximum number of unread events in the queue.
  106. # Default is 0 (unlimited)
  107. #
  108. # queue.max_events: 0
  109. #
  110. # If using queue.type: persisted, the total capacity of the queue in number of bytes.
  111. # If you would like more unacked events to be buffered in Logstash, you can increase the
  112. # capacity using this setting. Please make sure your disk drive has capacity greater than
  113. # the size specified here. If both max_bytes and max_events are specified, Logstash will pick
  114. # whichever criteria is reached first
  115. # Default is 1024mb or 1gb
  116. #
  117. # queue.max_bytes: 1024mb
  118. #
  119. # If using queue.type: persisted, the maximum number of acked events before forcing a checkpoint
  120. # Default is 1024, 0 for unlimited
  121. #
  122. # queue.checkpoint.acks: 1024
  123. #
  124. # If using queue.type: persisted, the maximum number of written events before forcing a checkpoint
  125. # Default is 1024, 0 for unlimited
  126. #
  127. # queue.checkpoint.writes: 1024
  128. #
  129. # If using queue.type: persisted, the interval in milliseconds when a checkpoint is forced on the head page
  130. # Default is 1000, 0 for no periodic checkpoint.
  131. #
  132. # queue.checkpoint.interval: 1000
  133. #
  134. # ------------ Metrics Settings --------------
  135. #
  136. # Bind address for the metrics REST endpoint
  137. #
  138. # http.host: "127.0.0.1"
  139. #
  140. # Bind port for the metrics REST endpoint, this option also accept a range
  141. # (9600-9700) and logstash will pick up the first available ports.
  142. #
  143. # http.port: 9600-9700
  144. #
  145. # ------------ Debugging Settings --------------
  146. #
  147. # Options for log.level:
  148. # * fatal
  149. # * error
  150. # * warn
  151. # * info (default)
  152. # * debug
  153. # * trace
  154. #
  155. # log.level: info
  156. path.logs: /var/log/logstash
  157. #
  158. # ------------ Other Settings --------------
  159. #
  160. # Where to find custom plugins
  161. # path.plugins: []
Advertisement
Add Comment
Please, Sign In to add comment