Hi,
As I want to fetch logs from Okta, I am using filebeat 7.11 to do it. In the modules.d directory of filebeat, I can see configurations for Okta available.
I have entered the URL & credentials mentioned there. But now the problem is the URL is accessible via a proxy from my environment.
Where do I configure the proxy setting like
Proxy URL, Proxy Port, Proxy username, Proxy password, etc
Now had I used logstash http_poller input to connect to Okta API, below would have been my configuration,
urls => {
test2 => {
method => get
url => "https://okta/api/v1/logs"
headers => {
Accept => "application/json"
Authorization => "KEY*****************"
}
}
}
proxy => { host => "1.2.3.4" port => 4444 scheme => "http"}
request_timeout => 60
schedule => { cron => "0 * * * *"}
codec => "json"
But I dont see any such options while configuring Okta in filebeat.
Any input how to achieve this would be really helpful.
Thanks,