├── .gitignore ├── Gemfile ├── MIT-LICENSE ├── README ├── Rakefile ├── lib ├── mongo-rails-instrumentation.rb └── mongo │ └── rails │ ├── instrumentation.rb │ └── instrumentation │ ├── controller_runtime.rb │ ├── log_subscriber.rb │ ├── railtie.rb │ └── version.rb └── mongo-rails-instrumentation.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/mongo-rails-instrumentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/lib/mongo-rails-instrumentation.rb -------------------------------------------------------------------------------- /lib/mongo/rails/instrumentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/lib/mongo/rails/instrumentation.rb -------------------------------------------------------------------------------- /lib/mongo/rails/instrumentation/controller_runtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/lib/mongo/rails/instrumentation/controller_runtime.rb -------------------------------------------------------------------------------- /lib/mongo/rails/instrumentation/log_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/lib/mongo/rails/instrumentation/log_subscriber.rb -------------------------------------------------------------------------------- /lib/mongo/rails/instrumentation/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/lib/mongo/rails/instrumentation/railtie.rb -------------------------------------------------------------------------------- /lib/mongo/rails/instrumentation/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/lib/mongo/rails/instrumentation/version.rb -------------------------------------------------------------------------------- /mongo-rails-instrumentation.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomafro/mongo-rails-instrumentation/HEAD/mongo-rails-instrumentation.gemspec --------------------------------------------------------------------------------