If any Winlogbeat is sending data directly to ES then it will have automatically installed the index template for you. When going though Logstash, Winlogbeat isn't able to directly communicate to ES so you have to do it yourself (we might improve this in the future by proxying the template through LS).
You can check that the winlogbeat template is installed with this command which will return the contents of the templates matching the name "winlogbeat*".
GET _template/winlogbeat* (that's the kibana dev console syntax)
from powershell I ran command: .\bin\logstash-plugin list
and it showed logstash-input-beats within the list. Since all versions of the stack are the same I am assuming it is also the same (version 5.3.0)
ran command: .\bin\logstash-plugin list --verbose
Result: logstash-input-beats (3.1.12)
ran command: .\bin\logstash-plugin remove logstash-input-beats
Result: Successfully removed logstash-input-beats
Downloaded:
Copied downloaded file "logstash-input-beats-master.zip" to C:\ELK\logstash-5.3.0
ran command: .\bin\logstash-plugin install --no-verify
Result: Error Bundler::Install Error...Make sure that 'gem install logstash-core-event-java -v '5.3.0' succeeds before bundling.
I found the bundler-1.9.10 folder and ran .\bundle install from powershell and it asks how I want to open this file, I would assume jruby, but would definitely appreciate any assistance getting past this so I'm not spinning my wheels any longer.
I had already removed it, since the version showed up 3.1.12...I was under the impression that all of the versions should match and it needed to be removed and the new one installed.
Andrew -
I want to thank you for helping me stumble through this. I found that I was missing one quote in the logstash config that was not allowing the winlogbeat data to get to elasticsearch...pretty frustrating, but thanks again for sticking with me on this. I think I was making it more complicated than it needed to be. Cheerz!
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.