mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-02-05 23:03:30 +01:00
21 lines
440 B
Django/Jinja
21 lines
440 B
Django/Jinja
filter {
|
|
if [event][module] =~ "endgame" {
|
|
mutate {
|
|
remove_field => ["client_headers", "client_host"]
|
|
}
|
|
}
|
|
}
|
|
output {
|
|
if [event][module] =~ "endgame" {
|
|
elasticsearch {
|
|
id => "endgame_es_output"
|
|
hosts => "{{ GLOBALS.manager }}"
|
|
user => "{{ ES_USER }}"
|
|
password => "{{ ES_PASS }}"
|
|
index => "endgame-%{+YYYY.MM.dd}"
|
|
ssl => true
|
|
ssl_certificate_verification => false
|
|
}
|
|
}
|
|
}
|