-
Notifications
You must be signed in to change notification settings - Fork 69
Closed
Description
I'm using Logstash 1.5.3 and was trying a very simple Logstash configuration. However, when starting up Logstash throws an error: uninitialized constant LogStash::Inputs::Http::Base64
.
Here's my config:
input {
syslog {
type => "syslog"
port => 5544
tags => []
add_field => {
"index" => "syslog"
}
}
http {
type => "http"
port => 8080
user => "logstash"
password => "*******"
tags => [ "webhook" ]
}
}
# Add your filters here
filter {
}
output {
# Trying to debug things? Enable the stdout output plugin
stdout {
codec => rubydebug
}
}
What am I doing wrong here?
Metadata
Metadata
Assignees
Labels
No labels