Hello,
Currently I am configuring a rss feed with logstash rss plugin.
This is my logstash pipeline config:
input {
rss {
url => ""
interval => 7200
tags => ["rss"]
}
}
filter {
fingerprint {
source => "title"
}
}
output {
elasticsearch {
hosts => ["http://localhost:9200"]
index => "rss-feeds"
user => ""
password => ""
}
stdout{ codec => rubydebug }
}
To remove duplicates, I have used fingerprint in the filter section.But unfortunately I have still duplicates.
I hope somebody have other suggestions to solve this.
Best regards,
Robin