elasticsearch - Get plugin version installed in logstash -


is there way find specific logstash plugin version ?

i'm able list plugin using bin/logstash-plugin list 'logstash-input-kafka', , in of bin/logstash-plugin, wasn't able find flags find version of plugin installed in logstash.

to find version of plugin, can list vendor/bundle/jruby/1.9/gems/ folder , you'll see plugin versions you're running. instance, on logstash 2.3.2, you'd see logstash-input-kafka plugin:

ls -la vendor/bundle/jruby/1.9/gems | grep "logstash-input-kafka" > logstash-input-kafka-2.0.8 

you can find version number in gemspec file inside plugin folder.

to find logstash version:

with logstash 2.x, can run this:

bin/logstash version 

with logstash 5.x (still in alpha stage), can run this:

bin/logstash -v 

update

in meantime, found --verbose flag documented here. can append specific plugin name. goes this:

bin/logstash-plugin list --verbose logstash-input-kafka 

will yield

logstash-input-kafka (2.0.8) 

Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -