Issues
- Testing failed: "Add remote capability to the wmi plugin" from issue 1747LOGSTASH-2132Logstash Developers
- 1.3.3 is under Unreleased versions when raising a bug in jiraLOGSTASH-1891Resolved issue: LOGSTASH-1891Jordan Sissel
- Logstash quits with HTTPFatalErrorLOGSTASH-1869Logstash Developers
- Unquoted regexs not working in conditionalsLOGSTASH-1276Resolved issue: LOGSTASH-1276Jordan Sissel
- Kibana error: Default dashboard missing! Could not locate dashboards/defaultLOGSTASH-1273Resolved issue: LOGSTASH-1273Jordan Sissel
- Help doesn't actually helpLOGSTASH-1272Resolved issue: LOGSTASH-1272Jordan Sissel
- Syslog input failsLOGSTASH-1271Resolved issue: LOGSTASH-1271Logstash Developers
- nagios output not workingLOGSTASH-1270Logstash Developers
- IRC output plugin rate-limitingLOGSTASH-962Resolved issue: LOGSTASH-962Jordan Sissel
- 1.1.10-dev amqp/rabbitmq output causes high CPU usageLOGSTASH-940Resolved issue: LOGSTASH-940Logstash Developers
- new snmptrap input causes high CPU even when idleLOGSTASH-938Resolved issue: LOGSTASH-938Jason Kendall
- ThreadError: queue shut down with tcp outputLOGSTASH-778Resolved issue: LOGSTASH-778Logstash Developers
- Doubled @fields valuesLOGSTASH-770Resolved issue: LOGSTASH-770Logstash Developers
- collect agent didn't consume data from RabbitMQsLOGSTASH-275Resolved issue: LOGSTASH-275Jordan Sissel
14 of 14
Testing failed: "Add remote capability to the wmi plugin" from issue 1747
Description
Gliffy Diagrams
Details
Details
Assignee
Logstash Developers
Logstash DevelopersReporter
Marcel Müller
Marcel MüllerAffects versions
Created April 21, 2014 at 12:05 AM
Updated February 14, 2015 at 7:37 AM
Activity
Show:
Kurt Hurtado
updated the LabelsFebruary 14, 2015 at 7:37 AMconfiguration input plugin windows wmi
configuration input input/wmi plugin windows wmi
Marcel Müller
created the IssueApril 21, 2014 at 12:05 AM
Hello,
issue "LOGSTASH-1747" would be a nice feature! I had tested it out, but it didn't work for me.
I've installed the contrib-package and modified the logstash/lib/logstash/input/wmi.rb with the following file content:
https://github.com/electrical/logstash/blob/ecda1bcbd201311c874066e7c1ba616084260c8a/lib/logstash/inputs/wmi.rb
By testing my config an error has occured:
LoadError: load error: win32ole/win32ole – java.lang.UnsatisfiedLinkError: /opt/logstash/vendor/bundle/jruby/1.9/gems/jruby-win32ole-0.8.5/lib/racob-x86.dll: /opt/logstash/vendor/bundle/jruby/1.9/gems/jruby-win32ole-0.8.5/lib/racob-x86.dll: invalid ELF header (Possible cause: endianness mismatch)
My conf btw..:
input {
wmi {
query => "SELECT * FROM Win32_NTLogEvent WHERE (logfile='Application')"
interval => 30
host => "192.168.0.128"
user => "logstash"
password => "test1234"
}
}
I changed some dynamic paths into hard paths in the /opt/logstash/vendor/bundle/jruby/1.9/gems/jruby-win32ole-0.8.5/lib/jruby-win32ole.rb
#require 'racob.jar'
require '/opt/logstash/vendor/bundle/jruby/1.9/gems/jruby-win32ole-0.8.5/lib/racob.jar'
#require 'win32ole/win32ole'
require '/opt/logstash/vendor/bundle/jruby/1.9/gems/jruby-win32ole-0.8.5/lib/win32ole/win32ole.jar'
But by doing that and testing my config again I got another error:
missing class or uppercase package name (`org.racob.com.Dispatch')
What I'm doing wrong? :-/
My main aim is to remote collection of Windows eventlog (over the WMI protocol) on linux hosts without the need to install an agent on the Windows target.
Thanks in advance.
Marcel