Hi everyone, It is very likely that logstash will not work with windows 10. I'm learning to use logstash so I downloaded its latest version and I want to test it on my computer that has windows 10. When I get to the test part Configuration file entering:
logstash -f LogstashPipeLine.conf --config.test_and_exit
I get the following error in terminal:
[ERROR] 2018-07-02 19: 18: 55.413 [main] Logstash - java.lang.IllegalStateException: org.jruby.exceptions.RaiseException: (LoadError) no such file to load - bundler
Download: logstash-6.2.4
My operating system is Windows 10.
The JDK version is: jdk1.8.0_171
I have the JAVA_HOME variable initialized
My configuration file is the following:
input
{
file
{
path => "C:\Users\Gastón\Desktop\ELK\Input\logstash-Input.log"
start_position => "beginning"
}
}
output
{
file
{
path => "C:\Users\Gastón\Desktop\ELK\Output\logstash-Output.log"
}
}