Created
October 1, 2010 18:24
-
-
Save jamesgolick/606628 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/lib/new_relic/agent/instrumentation/memcache.rb b/lib/new_relic/agent/instrumentation/memcache.rb | |
| index 4bef03e..a741e13 100644 | |
| --- a/lib/new_relic/agent/instrumentation/memcache.rb | |
| +++ b/lib/new_relic/agent/instrumentation/memcache.rb | |
| @@ -37,6 +37,7 @@ unless NewRelic::Control.instance['disable_memcache_instrumentation'] | |
| instrument_method(::MemCache, method_name) if defined? ::MemCache | |
| instrument_method(::Memcached, method_name) if defined? ::Memcached | |
| instrument_method(::Dalli::Client, method_name) if defined? ::Dalli::Client | |
| + instrument_method(::Spymemcached, method_name) if defined? ::Spymemcached | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment