oboe 2.7.6.2 → 2.7.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -2
- data/Gemfile +12 -1
- data/Rakefile +1 -0
- data/lib/oboe/api/logging.rb +3 -0
- data/lib/oboe/base.rb +12 -0
- data/lib/oboe/config.rb +2 -1
- data/lib/oboe/inst/sequel.rb +159 -0
- data/lib/oboe/util.rb +2 -1
- data/lib/oboe/version.rb +2 -2
- data/test/instrumentation/sequel_mysql2_test.rb +320 -0
- data/test/instrumentation/sequel_mysql_test.rb +320 -0
- data/test/instrumentation/sequel_pg_test.rb +324 -0
- data/test/support/config_test.rb +1 -1
- metadata +28 -21
data/test/support/config_test.rb
CHANGED
@@ -23,7 +23,7 @@ describe Oboe::Config do
|
|
23
23
|
instrumentation = Oboe::Config.instrumentation_list
|
24
24
|
|
25
25
|
# Verify the number of individual instrumentations
|
26
|
-
instrumentation.count.must_equal
|
26
|
+
instrumentation.count.must_equal 17
|
27
27
|
|
28
28
|
Oboe::Config[:action_controller][:enabled].must_equal true
|
29
29
|
Oboe::Config[:action_view][:enabled].must_equal true
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oboe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Giacomo Lombardo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-12-
|
12
|
+
date: 2014-12-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -112,6 +112,7 @@ files:
|
|
112
112
|
- lib/oboe/inst/rack.rb
|
113
113
|
- lib/oboe/inst/redis.rb
|
114
114
|
- lib/oboe/inst/resque.rb
|
115
|
+
- lib/oboe/inst/sequel.rb
|
115
116
|
- lib/oboe/inst/typhoeus.rb
|
116
117
|
- lib/oboe/instrumentation.rb
|
117
118
|
- lib/oboe/loading.rb
|
@@ -152,6 +153,9 @@ files:
|
|
152
153
|
- test/instrumentation/redis_sortedsets_test.rb
|
153
154
|
- test/instrumentation/redis_strings_test.rb
|
154
155
|
- test/instrumentation/resque_test.rb
|
156
|
+
- test/instrumentation/sequel_mysql2_test.rb
|
157
|
+
- test/instrumentation/sequel_mysql_test.rb
|
158
|
+
- test/instrumentation/sequel_pg_test.rb
|
155
159
|
- test/instrumentation/typhoeus_test.rb
|
156
160
|
- test/minitest_helper.rb
|
157
161
|
- test/profiling/method_test.rb
|
@@ -183,33 +187,36 @@ signing_key:
|
|
183
187
|
specification_version: 4
|
184
188
|
summary: AppNeta TraceView performance instrumentation gem for Ruby
|
185
189
|
test_files:
|
186
|
-
- test/
|
187
|
-
- test/
|
190
|
+
- test/support/config_test.rb
|
191
|
+
- test/support/xtrace_test.rb
|
192
|
+
- test/support/liboboe_settings_test.rb
|
193
|
+
- test/profiling/method_test.rb
|
194
|
+
- test/minitest_helper.rb
|
188
195
|
- test/frameworks/sinatra_test.rb
|
196
|
+
- test/frameworks/grape_test.rb
|
189
197
|
- test/frameworks/apps/sinatra_simple.rb
|
190
|
-
- test/frameworks/apps/padrino_simple.rb
|
191
198
|
- test/frameworks/apps/grape_simple.rb
|
192
|
-
- test/
|
193
|
-
- test/
|
199
|
+
- test/frameworks/apps/padrino_simple.rb
|
200
|
+
- test/frameworks/padrino_test.rb
|
201
|
+
- test/instrumentation/memcache_test.rb
|
202
|
+
- test/instrumentation/moped_test.rb
|
203
|
+
- test/instrumentation/rack_test.rb
|
204
|
+
- test/instrumentation/http_test.rb
|
194
205
|
- test/instrumentation/redis_hashes_test.rb
|
206
|
+
- test/instrumentation/em_http_request_test.rb
|
195
207
|
- test/instrumentation/redis_misc_test.rb
|
196
|
-
- test/instrumentation/dalli_test.rb
|
197
|
-
- test/instrumentation/redis_keys_test.rb
|
198
|
-
- test/instrumentation/redis_sortedsets_test.rb
|
199
|
-
- test/instrumentation/redis_strings_test.rb
|
200
208
|
- test/instrumentation/redis_sets_test.rb
|
201
|
-
- test/instrumentation/
|
209
|
+
- test/instrumentation/memcached_test.rb
|
210
|
+
- test/instrumentation/redis_keys_test.rb
|
202
211
|
- test/instrumentation/typhoeus_test.rb
|
203
212
|
- test/instrumentation/resque_test.rb
|
204
|
-
- test/instrumentation/em_http_request_test.rb
|
205
|
-
- test/instrumentation/moped_test.rb
|
206
|
-
- test/instrumentation/rack_test.rb
|
207
|
-
- test/instrumentation/memcache_test.rb
|
208
213
|
- test/instrumentation/faraday_test.rb
|
214
|
+
- test/instrumentation/redis_sortedsets_test.rb
|
215
|
+
- test/instrumentation/dalli_test.rb
|
216
|
+
- test/instrumentation/sequel_mysql_test.rb
|
209
217
|
- test/instrumentation/redis_lists_test.rb
|
210
218
|
- test/instrumentation/cassandra_test.rb
|
211
|
-
- test/instrumentation/
|
212
|
-
- test/
|
213
|
-
- test/
|
214
|
-
- test/
|
215
|
-
- test/support/xtrace_test.rb
|
219
|
+
- test/instrumentation/redis_strings_test.rb
|
220
|
+
- test/instrumentation/sequel_pg_test.rb
|
221
|
+
- test/instrumentation/mongo_test.rb
|
222
|
+
- test/instrumentation/sequel_mysql2_test.rb
|