I am using Filebeat 5.1 on Centos Linux and have following constraints =>
need to run multiple Filebeat instances on same hosts.
Each instance shall work with its own config yml.
Start and stop individual Filebeat instances without affecting other instances.
Can anybody provide more details how to achieve any of the above requirements ?
Also, it will be helpful to know whether there is any API by which I can start/stop Filebeat.
Using /etc/init.d/filebeat restart command somewhat not really good way to start/stop process on production hosts.
Why do you need more instances? What is your use case?
I also investigated how to have multiple instances. No result. Finally I was able to use only one for all my use cases.
@ruflin
With default Filebeat interface (/etc/init.d/filebeat on Linux) , I can not create multiple instances.
Start / Stop arguments to script start/stop only one instance. Also, it always use default YML config (/etc/filebeat/filebeat.yml) even if I use different config through -c argument.
@Vid
I want to monitor log files for multiple applications producing different types of logs in production.
Logs for some apps need to be streamed to Logstash and for others to Kafka.
It makes easy to manage my requirements with multiple Filebeat instances .
If one Filebeat instance stops/slows down, others shall not be affected.
which init system is your distribution using? The /etc/init.d/filebeat file is mostly used as fallback if the distribution is not using systemd. That is you likely have edited the wrong file?
@ruflin
I am using Filebeat 5.1 on Centos Linux .
To run multiple instances of Filebeat , I use binary of Filebeat (located at /usr/share/filebeat/bin/filebeat)
Here is command to run : " /usr/share/filebeat/bin/filebeat -c & "
I am not using default wrapper to run Filebeat.
As I run it in background, I get PID for filebeat process. I use this PID to stop/kill filebeat process whenever required.
Is this correct way to stop filebeat by killing its process ?
Or there is any other way to run multiple instances
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.