Hi,
Background:
I build docker images using logstash. After installing the logstash rpm, a few additional logstash plugins are installed. For ex.
/usr/share/logstash/bin/logstash-plugin install logstash-output-opensearch
/usr/share/logstash/bin/logstash-plugin install logstash-output-syslog
Query:
For a specific reason, I need to store the plugins in a separate location, as the size of these files is large. I need to temporarily move them to different path.
I assume on installation of the plugins, all the plugin-related files get stored here
/usr/share/logstash/vendor/bundle/
Is this the right understanding?
Would there be any other location where the logstash-plugin installation could create crucial files (data/metadata), that would need to be stored too?
Thanks !