I was trying the RSS plugin with Logstash, and I'm facing an error as detailed below:
Version:
Logstash 7.7.1
Operating System:
CentOS 7.8.2003
Config File:
input {
rss {
url => "https://www.alittihad.ae/arabi.rss"
interval => 7200
tags => ["ar", "rss", "alittihad"]
}
}
filter {
fingerprint{
source => "title"
target => "[@metadata][fingerprint]"
method => "MURMUR3"
}
}
output {
elasticsearch {
action => "index"
hosts => "localhost"
workers => 1
document_id => "%{[@metadata][fingerprint]}"
}
stdout {}
}
Error:
[ERROR][logstash.inputs.rss ][main][28d92d7fa1e60631ff0741642cbb39e90c8c542b6251b01324014030be140f75] Uknown error while parsing the feed {:url=>"https://www.alittihad.ae/arabi.rss", :exception=>#<RSS::MissingAttributeError: attribute <url> is missing in tag <source>>}