Rss feed ingestion exception

Hi,
I am using logstash rss plugin for rss feeds ingestion in my elastic cloud. But when it try to ingest the feed, it throws exception
Invalid RSS feed {:exception=>#<RSS::MissingTagError: tag is missing in tag >}
. How can i go about it. I dont have right to change the structure of rss so i need to handle it at logstash level but stuck here.
My configuration is :
input {
rss {
url => myurl
interval => 120
}
}

output {
elasticsearch {
hosts => "https://localhost:9201"
index => "index_rss"
}
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.