If you are using the proxy
field of the options
argument of new signalfx.Ingest()
:
- the value of
proxy
will be in the format:http://<USER>:<PASSWORD>@<HOST>:<PORT>
- it must be restructured into an object as such:
{ protocol: 'http(s)', host: '<HOST>', port: PORT, auth: { username: '<USER>', password: '<PASSWORD>' } },