You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using the Instrumental class directly in a project (we need 2 instances of the agent side by side), and it's annoying to have to call configure separately. We can't chain the call to configure (i.e.,I = new Instrumental().configure({...})) since it doesn't return the instance. That means we've got to call configure separately for both instances.
It seems like the best option is to allow the constructor to optionally take config options.
The text was updated successfully, but these errors were encountered:
We're using the
Instrumental
class directly in a project (we need 2 instances of the agent side by side), and it's annoying to have to callconfigure
separately. We can't chain the call to configure (i.e.,I = new Instrumental().configure({...})
) since it doesn't return the instance. That means we've got to callconfigure
separately for both instances.It seems like the best option is to allow the constructor to optionally take config options.
The text was updated successfully, but these errors were encountered: