mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
14 lines
357 B
Django/Jinja
14 lines
357 B
Django/Jinja
{% set MANAGER = salt['pillar.get']('global:managerip', '') %}
|
|
{% set BATCH = salt['pillar.get']('logstash_settings:ls_pipeline_batch_size', 125) %}
|
|
output {
|
|
redis {
|
|
host => '{{ MANAGER }}'
|
|
data_type => 'list'
|
|
key => 'logstash:unparsed'
|
|
congestion_interval => 1
|
|
congestion_threshold => 50000000
|
|
batch => true
|
|
batch_events => {{ BATCH }}
|
|
}
|
|
}
|