I have a csv file. It contains 13 columns and more than 150 000 rows.
When I use the following config, There is no output on the logstash.
input {
file {
path => "/salaries.csv"
start_position => "beginning"
type => "data"
}
}
filter {
csv{
separator => ","
}
}
output {
stdout {
codec => rubydebug
}
}
would you please give me a basic solution for this case.