Support of iTunes RSS in logstash-input-rss plugin

Is this supported by logstash-input-rss?
In other words where I can find which of the below are supported by this plugin?

  1. RSSFeedBurner
  2. GoogleDocsAtom
  3. AtomFeedBurner
  4. Atom
  5. ITunesRSS
  6. RSS

Was not able to find relevant documentation. Can someone point me to it if it exists somewhere?

The RSS Input Plugin is a community-provided generic plugin for RSS and Atom feeds. It does not support any specific RSS/Atom feeds, but lets you configure it to point to specific feeds.

Have you tried using it with the appropriate URLs for the above services? If so, what happened?

I tried with an ITunesRSS format feed. It did not pick up the fields which had itunes specific html tags.

Something like :
<itunes:subtitle>...</itunes:subtitle>
<itunes:owner>... </itunes:owner>

Conf file:

    input {
          rss
            {
             interval => 6000
             url => "http://www.blahblah/podcast.xml"
            }
          }
	output {
			  elasticsearch
                     {
					  hosts => "whatever:9200"
					  index => "blah"
					  manage_template => true
			          }
			  stdout
                   {
					  codec => rubydebug
			        }
	        }

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