Hello gentlemen.
I have a logstash pipeline that processes data from a .csv file
this file has a column called id
how do i not duplicate the data with the same id in case i reprocessed the file or another file that contains the same id?
follow my current filter
filter {
csv {
separator => ","
skip_header => "true"
columns => ["id","product","job description","uuid Value"]
}