Logstash wont allow me to create a pipeline with my config, between him and search. I wanted to import some data into the db, but had no luck.
Here's my config
Blockquote
input{
file{
path=>"E:\Programi\Elastic\Server\File\test.csv"
start_position=>"beginning"
sincedb_path =>"/dev/null"
}
}
filter{
csv{
separator =>";"
columns =>["Bbl", "routine name", "correct count", "stopless", "startless", "averge", "min", "max", "sum", "%"]
}
mutate{convert =>["Bbl", "integer"]}
mutate{convert =>["correct count", "integer"]}
mutate{convert =>["stopless", "integer"]}
mutate{convert =>["startless", "integer"]}
mutate{convert =>["averge", "double"]}
mutate{convert =>["min", "integer"]}
mutate{convert =>["max", "integer"]}
mutate{convert =>["sum", "integer"]}
mutate{convert =>["%", "double"]}
}
output{
elasticsearch{
user => "logstash_internal"
password => "test"
hosts=>"localhost:9200"
index =>"test"
document_type =>"tes_test"
}
stdout{}
}
And here's the log data from the error
Plz help if u can