Hello,
Using below basic http_poller request I will obtain a .json file that contains an attribute called "id".
For each "id" I need to call other APIs, having the "id" value in the url: https://..../id.
How can I achieve that in logstash ?
input {
http_poller {
urls => {
snow => {
method => get
user => "..."
password => "..."
url => "..."
headers => {
Accept => "application/json"
}
}
}
request_timeout => 60
schedule => { cron => "*/2 * * * * UTC"}
codec => "json"
}
}