Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 454 Bytes

MIGRATING.md

File metadata and controls

18 lines (16 loc) · 454 Bytes

Migrating between versions

8.0.0 from 7.x

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>'
      }
    },