All Apps and Add-ons

"Include only new or changed entries" option is not working

cogrunc
New Member

Hello,

Although I clicked "Include only new or changed entries" check box, all RSS feeds continue to be imported in Splunk. Can you help me to get only new or changed RSS data?

Thanks,

0 Karma
1 Solution

LukeMurphey
Champion

The RSS feed (https://www.usom.gov.tr/rss/zararli-baglanti.rss) doesn't include a date field for the entries which is why the app isn't filtering them. The entries need to have a pubDate element to support automatic filtering.

You could handle this in search. For example, below is a search that deduplicates the entries and uses the time field to indicate when the item was first observed.

source="syndication://answers_239153" | stats earliest(_time) as earliest latest(_time) as last_seen by title | convert ctime(earliest) ctime(last_seen) | sort title

View solution in original post

0 Karma

LukeMurphey
Champion

The RSS feed (https://www.usom.gov.tr/rss/zararli-baglanti.rss) doesn't include a date field for the entries which is why the app isn't filtering them. The entries need to have a pubDate element to support automatic filtering.

You could handle this in search. For example, below is a search that deduplicates the entries and uses the time field to indicate when the item was first observed.

source="syndication://answers_239153" | stats earliest(_time) as earliest latest(_time) as last_seen by title | convert ctime(earliest) ctime(last_seen) | sort title
0 Karma

LukeMurphey
Champion

Could you provide the URL if the feed is public? I can debug it from there. Otherwise, I can provide some guidance based on the logs.

0 Karma

cogrunc
New Member
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...