-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
Description
The websocket input which is working fine in Linux is not working in Windows. Getting
[2018-07-27T12:19:49,037][WARN ][logstash.inputs.websocket] websocket input client threw exception, restarting {:exception=>#<Errno::EBADF: Bad file descriptor - No message available>}
[2018-07-27T12:20:15,582][WARN ][logstash.inputs.websocket] websocket input client threw exception, restarting {:exception=>#<Errno::EBADF: Bad file descriptor - No message available>}
Config file I am using is
input {
websocket {
url => "ws://0.0.0.0:8081/"
}
}
Could
output {
file {
path => "C:\ouput_log\logdata.log"
}
}
Could anyone please help?
PaulCheriyan009