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 per @oboxodo's documented experiences in #731 (see comment), using either instrumentation.redis: chain or instrumentation.redis_instrumentation: chain in newrelic.yml fails to instruct the agent to switch away from its default "prepend" instrumentation behavior for the redis gem over to using the "chain" approach as expected.
Using the environment variable approach of NEW_RELIC_INSTRUMENTATION_REDIS=chain does work as desired and cause "chain" to be used.
We need to investigate why the config file approaches to using "chain" with redis are not working.
The text was updated successfully, but these errors were encountered:
I have done some testing and left comments on #731. The correct configuration value should be instrumentation.redis: chain. With that value in the config file, the agent reports that it is using method chaining for Redis instrumentation in my testing.
I have put together a gist to help with reproducing (or not) the issue.
As per @oboxodo's documented experiences in #731 (see comment), using either
instrumentation.redis: chain
orinstrumentation.redis_instrumentation: chain
innewrelic.yml
fails to instruct the agent to switch away from its default "prepend" instrumentation behavior for theredis
gem over to using the "chain" approach as expected.Using the environment variable approach of
NEW_RELIC_INSTRUMENTATION_REDIS=chain
does work as desired and cause "chain" to be used.We need to investigate why the config file approaches to using "chain" with
redis
are not working.The text was updated successfully, but these errors were encountered: