mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
16 lines
340 B
Plaintext
16 lines
340 B
Plaintext
{%- set nodetype = salt['pillar_get']('node:node_type', 'storage') %}
|
|
output {
|
|
redis {
|
|
host => 'so-redis'
|
|
data_type => 'list'
|
|
{%- if nodetype == 'parser' %}
|
|
key => 'logstash:parsed'
|
|
{%- else %}
|
|
key => 'logstash:unparsed'
|
|
{%- endif %)
|
|
congestion_interval => 1
|
|
congestion_threshold => 50000000
|
|
# batch_events => 500
|
|
}
|
|
}
|