Can you please suggest a best way to configure logstash to logstash communication with SSL/TLS encryption.
There are some of the articles in logstash input and output plugin
lumberjack plugin but it did not work for me
some of them are deprecated.
Hi @Gsmitt Thanks for the lightning response , appreciated
In my scenario, It requires the logstash to logstash communication and not filebeat to logstash
Recently we had a merger between two companies and they are using logstash as well and we are trying to receive logs from their logstash ( A ) to our logstash ( B ) and have a secure communication between these two and send this logs to Opensearch
One of the routes I would suggest investigating is shipping logs to an intermediary buffer like redis, kafka etc, then have the other logstash pull from there.
This avoids any issues if the last logstash in your chain is offline for whatever reason and should help prevent the shipping logstash from OOM’ing.
Thank you for replying @jasonrojas
Suppose If I use tcp output plugin in logstash A and tcp input plugin in logstash B does it have any impact of data loss if one of the logstash chain goes down ?
You would have to test that to be certain. I think logstash will buffer to a point however those internal buffers will be limited to heap size and system memory etc.