Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
Enable Mongo by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrclark committed Dec 20, 2013
1 parent 7d5a88f commit 58d117b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG
Expand Up @@ -2,13 +2,13 @@

## v3.7.1 ##

* Experimental MongoDB support
* MongoDB support

The Ruby agent provides experimental support for the mongo gem, versions 1.8
and 1.9! Mongo calls are captured for transaction traces along with their
parameters, and time spent in Mongo shows up on the Database tab.
The Ruby agent provides support for the mongo gem, versions 1.8 and 1.9!
Mongo calls are captured for transaction traces along with their parameters,
and time spent in Mongo shows up on the Database tab.

Support for more Mongo gems, and more UI goodness will be coming, so watch
Support for more Mongo gems and more UI goodness will be coming, so watch
http://docs.newrelic.com/docs/ruby/mongo for up-to-date status.

* Harvest thread restarts for forked and daemonized processes
Expand Down
2 changes: 1 addition & 1 deletion lib/new_relic/agent/configuration/default_source.rb
Expand Up @@ -631,7 +631,7 @@ def self.monitor_mode
:description => 'Enable or disable sequel instrumentation.'
},
:disable_mongo => {
:default => true,
:default => false,
:public => true,
:type => Boolean,
:description => 'Enable or disable MongoDB instrumentation.'
Expand Down
2 changes: 1 addition & 1 deletion lib/new_relic/agent/supported_versions.rb
Expand Up @@ -141,7 +141,7 @@ module Agent
:mongo =>
{
:type => :database,
:experimental=> ["~>1.8.0", "~>1.9.0"],
:supported => ["~>1.8.0", "~>1.9.0"],
:url => "https://rubygems.org/gems/mongo",
:feed => "https://rubygems.org/gems/mongo/versions.atom"
},
Expand Down
1 change: 0 additions & 1 deletion test/multiverse/suites/mongo/config/newrelic.yml
Expand Up @@ -17,4 +17,3 @@ development:
stack_trace_threshold: 0.5
transaction_threshold: 1.0
capture_params: false
disable_mongo: false

0 comments on commit 58d117b

Please sign in to comment.