Can we create dependent inputs in logstash pipeline?

Hi Team,
I have requirement to get the links from rss feed and extract each link and store its XML page source as a document in ES.

I am trying to use rss and http_poller input plugin together, something like below conceptually

input{
     rss{
             url=> "feedurl"
        }
# then link field will have all links
  http_poller{
           urls=>{ linkurl => %{link} }
}

Is is possible in logstash?

thanks,
disha

You cannot reference the fields of an event in the configuration of an input. However, you should be able to do this using an http filter instead of an input.

Thanks Badger,
It has solved and achieved what was expected.

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