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
As I undestand it, modules put environment variables in the env argument, so they're not accessible at the time of wrapModule(). The ability to specify HONEYCOMB_DATASET and HONEYCOMB_API_KEY as env vars means we don't end up adding data, but we do still end up making requests to honeycomb.
A couple possibilities:
add an env var to disable
add a config key to disable and
-- merge env with HoneycombConfig as we resolve configs, or
-- make more config keys overridable with env vars
The text was updated successfully, but these errors were encountered:
I might be missing something, but I don't see a way to use environment variables to disable sending to honeycomb (e.g. for a dev environment).
As I undestand it, modules put environment variables in the
env
argument, so they're not accessible at the time ofwrapModule()
. The ability to specifyHONEYCOMB_DATASET
andHONEYCOMB_API_KEY
as env vars means we don't end up adding data, but we do still end up making requests to honeycomb.A couple possibilities:
-- merge
env
with HoneycombConfig as we resolve configs, or-- make more config keys overridable with env vars
The text was updated successfully, but these errors were encountered: