mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-04-24 21:47:48 +02:00
15 lines
355 B
Django/Jinja
15 lines
355 B
Django/Jinja
{% set MASTER = salt['pillar.get']('static:masterip', '') %}
|
|
{% set BATCH = salt['pillar.get']('logstash_settings:ls_pipeline_batch_size', 125) %}
|
|
|
|
output {
|
|
redis {
|
|
host => '{{ MASTER }}'
|
|
data_type => 'list'
|
|
key => 'logstash:unparsed'
|
|
congestion_interval => 1
|
|
congestion_threshold => 50000000
|
|
batch => true
|
|
batch_events => {{ BATCH }}
|
|
}
|
|
}
|