Is there any way to check the versions of installed logstash, kibana, filebeat and winlogbeat ?
Like to check elasticsearch version you execute: curl -XGET 'localhost:9200'
Is there any way to check the versions of installed logstash, kibana, filebeat and winlogbeat ?
Like to check elasticsearch version you execute: curl -XGET 'localhost:9200'
Logstash has a Monitoring API
Thanks A_B,
Anything for filebeat, winlogbeat, kibana, etc. It will be a great help
Not as clean maybe but for Kibana you could do this
# curl -s http://localhost:5601/api/status | jq .version.number
"6.3.2"
That link didn't work, though I have got the solution on how to check the versions :
/usr/share/filebeat/bin/filebeat --version
/usr/share/logstash/bin/logstash --version
/usr/share/kibana/bin/kibana --version
/usr/share/elasticsearch/bin/elasticsearch --version
Don't know for winlogbeat
Right. That will work. I thought you might need to be able to do it over the network (although requests to localhost don't really do that anyway...).
Thanks a lot A_B
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
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.