Advertisement
tatdat171

logstash.yml

Nov 28th, 2017
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.76 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. # How often to check if the pipeline configuration has changed (in seconds)
  80. #
  81. config.reload.interval: 3s
  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. modules:
  112.   - name: netflow
  113.     var.input.udp.port: 9996
  114.     var.elasticsearch.hosts: "my-ip:9200"
  115.     var.elasticsearch.username: "my-user"
  116.     var.elasticsearch.password: "my-password"
  117.     var.kibana.host: "my-ip:443"
  118.     var.kibana.username: "my-user"
  119.     var.kibana.password: "my-password"
  120.  
  121. # ------------ Cloud Settings ---------------
  122. # Define Elastic Cloud settings here.
  123. # Format of cloud.id is a base64 value e.g. dXMtZWFzdC0xLmF3cy5mb3VuZC5pbyRub3RhcmVhbCRpZGVudGlmaWVy
  124. # and it may have an label prefix e.g. staging:dXMtZ...
  125. # This will overwrite 'var.elasticsearch.hosts' and 'var.kibana.host'
  126. # cloud.id: <identifier>
  127. #
  128. # Format of cloud.auth is: <user>:<pass>
  129. # This is optional
  130. # If supplied this will overwrite 'var.elasticsearch.username' and 'var.elasticsearch.password'
  131. # If supplied this will overwrite 'var.kibana.username' and 'var.kibana.password'
  132. # cloud.auth: elastic:<password>
  133. #
  134. # ------------ Queuing Settings --------------
  135. #
  136. # Internal queuing model, "memory" for legacy in-memory based queuing and
  137. # "persisted" for disk-based acked queueing. Defaults is memory
  138. #
  139. # queue.type: memory
  140. #
  141. # If using queue.type: persisted, the directory path where the data files will be stored.
  142. # Default is path.data/queue
  143. #
  144. # path.queue:
  145. #
  146. # If using queue.type: persisted, the page data files size. The queue data consists of
  147. # append-only data files separated into pages. Default is 250mb
  148. #
  149. # queue.page_capacity: 250mb
  150. #
  151. # If using queue.type: persisted, the maximum number of unread events in the queue.
  152. # Default is 0 (unlimited)
  153. #
  154. # queue.max_events: 0
  155. #
  156. # If using queue.type: persisted, the total capacity of the queue in number of bytes.
  157. # If you would like more unacked events to be buffered in Logstash, you can increase the
  158. # capacity using this setting. Please make sure your disk drive has capacity greater than
  159. # the size specified here. If both max_bytes and max_events are specified, Logstash will pick
  160. # whichever criteria is reached first
  161. # Default is 1024mb or 1gb
  162. #
  163. # queue.max_bytes: 1024mb
  164. #
  165. # If using queue.type: persisted, the maximum number of acked events before forcing a checkpoint
  166. # Default is 1024, 0 for unlimited
  167. #
  168. # queue.checkpoint.acks: 1024
  169. #
  170. # If using queue.type: persisted, the maximum number of written events before forcing a checkpoint
  171. # Default is 1024, 0 for unlimited
  172. #
  173. # queue.checkpoint.writes: 1024
  174. #
  175. # If using queue.type: persisted, the interval in milliseconds when a checkpoint is forced on the head page
  176. # Default is 1000, 0 for no periodic checkpoint.
  177. #
  178. # queue.checkpoint.interval: 1000
  179. #
  180. # ------------ Dead-Letter Queue Settings --------------
  181. # Flag to turn on dead-letter queue.
  182. #
  183. # dead_letter_queue.enable: false
  184.  
  185. # If using dead_letter_queue.enable: true, the maximum size of each dead letter queue. Entries
  186. # will be dropped if they would increase the size of the dead letter queue beyond this setting.
  187. # Default is 1024mb
  188. # dead_letter_queue.max_bytes: 1024mb
  189.  
  190. # If using dead_letter_queue.enable: true, the directory path where the data files will be stored.
  191. # Default is path.data/dead_letter_queue
  192. #
  193. # path.dead_letter_queue:
  194. #
  195. # ------------ Metrics Settings --------------
  196. #
  197. # Bind address for the metrics REST endpoint
  198. #
  199. http.host: "10.1.6.201"
  200. #
  201. # Bind port for the metrics REST endpoint, this option also accept a range
  202. # (9600-9700) and logstash will pick up the first available ports.
  203. #
  204. # http.port: 9600-9700
  205. #
  206. # ------------ Debugging Settings --------------
  207. #
  208. # Options for log.level:
  209. #   * fatal
  210. #   * error
  211. #   * warn
  212. #   * info (default)
  213. #   * debug
  214. #   * trace
  215. #
  216. log.level: debug
  217. path.logs: /var/log/logstash
  218. #
  219. # ------------ Other Settings --------------
  220. #
  221. # Where to find custom plugins
  222. # path.plugins: []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement