Proxy Authentication
I want to check the availability of an http site using heartbeat. I have setup the heartbeat like below:
type: http
schedule: '@every 1m'
urls: ["https://10.123.4.56:9000", "https://10.123.4.58:9000"]
proxy_url: ["proxy1.example.net:8080", "proxy2.example.net:8080"]
check.request.method: GET
check.response.status: 200
Issue
To access those proxy server I need to authenticate (ntlm). I didn't see in the documentation any options to add to the configuration which will regard to proxy authentication only to proxy urls.
Is this option availble to authentcate to the proxy server ?