input {
file {
path => "/tmp/spreadsheet_data.csv"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
filter {
csv {
separator => ","
skip_header => "true"
columns => ['Name','Class','Dorm','Room','GPA']
}
}
output {
elasticsearch {
hosts => "http://localhost:9200"
index => "primeiro_teste"
}
stdout {}
}
}
can someone help me see what is wrong?