Http_poller logstash input plugin : socks5

I try to use http_poller to request url but i need to use a dynamic ssh forwarding.
How i can specify to http_poller to use the socks5 proxy to resolve the url request ?

i try this config but i have this message

http_request_failure.error => socks5 protocol is not supported

http_poller {
    urls => {
        my-server => "https://myserver.localdomain/webapp/#/home"
    }
    truststore => "/home/downloaded_truststore.jks"
    truststore_password => "mycredential"
    request_timeout => 60
    # Supports "cron", "every", "at" and "in" schedules by rufus scheduler
    #schedule => { cron => "* * * * * UTC"}
    proxy => "socks5://127.0.0.1:8282"
    schedule => { every => "10m"}
    request_timeout => 60
    codec => "plain"
    # A hash of request metadata info (timing, response headers, etc.) will be sent here
    metadata_target => "http_poller_metadata"
    type => "http_poller"
  }

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