Hello everyone, I'm having a problem like that;
C:/Users/akumas/logstash-6.5.1/logstash-core/lib/logstash/pipeline.rb:409:in inputworker' C:/Users/akumas/logstash-6.5.1/logstash-core/lib/logstash/pipeline.rb:403:in
block in
any idea?
start_input'
my config like is like that;
input{
file{
path => "/Users/akumas/Data/cars.csv"
start_position=>"beginning"
sincedb_path => "/dev/null"
}
}
filter{
csv{
separator => ","
columns => ["maker", "model", "mileage", "manufacture_year", "engine_displacement", "engine_power", "body_type", "color_slug", "stk_year", "transmission", "door_count", "seat_count", "fuel_type", "date_created", "date_last_seen", "price_eur"]
}
mutate {convert => ["mileage", "integer"] }
mutate {convert => ["price_eur", "float"] }
mutate {convert => ["engine_power", "integer"] }
mutate {convert => ["door_count", "integer"] }
mutate {convert => ["seat_count", "integer"] }
}
output {
elasticsearch {
hosts => "localhost"
index =>"cars"
document_type=>"sold_cars"
}
stdout {}
}