i am trying to read cvs file. i see similar post but see no definite answer. is it the pointer issue that cvs file does not have pointer?
If so, logstash doesn't work for static cvs file?
my config below:
input {
file {
path => "/Desktop/sample.csv"
start_position => "beginning"
ignore_older => 0
sincedb_path => "/dev/null"
}
}
filter {
csv {
columns => ["ets_ccsdk_events","archivedb","archivepk","authsrc","blob","blobcompression","brioaccountid","brioaccountname","briomeetingname","briomeetingsessionid","briousersessionid","code","collectiondts","collectionenv","collectionhost","documentid","documentlength" ]
}
}
output {
stdout { codec => rubydebug }
}
~
~