Hello,
I wanted to use the plugin http logsatsh input, but it is not in Logstash 1.5.1 (my actual version). So I update to 1.5.2 but when I try to start logsatsh, I have this error message :
The error reported is:
uninitialized constant LogStash::Inputs::Http::Base64
I don't understand this.
This is my logsatsh configuration :
input {
http {
host => "localhost"
port => "8888"
type => "html5"
user => "admin"
password => "password"
}
}
filter{
if [type] == "html5"
{
mutate {
add_field => { "file" => "pas de fichier source (http)" }
add_field => { "application" => "simat" }
}
json {
source => message
}
date {
match => ["date","YYYY-MM-dd HH:mm:ss"]
target => "@timestamp"
locale => "en"
remove_field => [ "date" ]
}
}
}
output {
stdout { codec => rubydebug }
}
Can you help me ?
Marjolaine