default filebeat ingest pipelines #9913
Replies: 1 comment
-
Take a look at That file is also not an all-inclusive for all the modules. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What is the idea behind that not all filebeat default ingest pipelines are created?
Before elasticsearch 8 all filebeat ingest pipelines was created automatically at onion setup time, but after elasticsearch 8 at setup time some third party pipelines and some onion default ones are created, but not for example system.syslog.
So for me it looks strange that some third party pipelines are created, but no the default ones.
From documentation it's also not clearly stated that for each used filebeat module ingest pipelines should be created on onion.
So I fixed my install using thous commands to create missing filebeat ingest pipelines:
docker exec -i so-filebeat filebeat setup modules -pipelines -modules system -M 'system.syslog.enabled=true' -c /usr/share/filebeat/module-setup.yml
docker exec -i so-filebeat filebeat setup modules -pipelines -modules system -M 'system.auth.enabled=true' -c /usr/share/filebeat/module-setup.yml
docker exec -i so-filebeat filebeat setup modules -pipelines -modules iptables -M 'iptables.log.enabled=true' -c /usr/share/filebeat/module-setup.yml
Beta Was this translation helpful? Give feedback.
All reactions