oboe 2.7.6.2-java → 2.7.7.1-java
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 +26 -19
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: java
|
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
|
@@ -110,6 +110,7 @@ files:
|
|
110
110
|
- lib/oboe/inst/rack.rb
|
111
111
|
- lib/oboe/inst/redis.rb
|
112
112
|
- lib/oboe/inst/resque.rb
|
113
|
+
- lib/oboe/inst/sequel.rb
|
113
114
|
- lib/oboe/inst/typhoeus.rb
|
114
115
|
- lib/oboe/instrumentation.rb
|
115
116
|
- lib/oboe/loading.rb
|
@@ -150,6 +151,9 @@ files:
|
|
150
151
|
- test/instrumentation/redis_sortedsets_test.rb
|
151
152
|
- test/instrumentation/redis_strings_test.rb
|
152
153
|
- test/instrumentation/resque_test.rb
|
154
|
+
- test/instrumentation/sequel_mysql2_test.rb
|
155
|
+
- test/instrumentation/sequel_mysql_test.rb
|
156
|
+
- test/instrumentation/sequel_pg_test.rb
|
153
157
|
- test/instrumentation/typhoeus_test.rb
|
154
158
|
- test/minitest_helper.rb
|
155
159
|
- test/profiling/method_test.rb
|
@@ -182,32 +186,35 @@ specification_version: 4
|
|
182
186
|
summary: AppNeta TraceView performance instrumentation gem for Ruby
|
183
187
|
test_files:
|
184
188
|
- test/minitest_helper.rb
|
189
|
+
- test/support/config_test.rb
|
190
|
+
- test/support/xtrace_test.rb
|
191
|
+
- test/support/liboboe_settings_test.rb
|
192
|
+
- test/profiling/method_test.rb
|
193
|
+
- test/frameworks/sinatra_test.rb
|
185
194
|
- test/frameworks/grape_test.rb
|
186
195
|
- test/frameworks/padrino_test.rb
|
187
|
-
- test/frameworks/sinatra_test.rb
|
188
196
|
- test/frameworks/apps/sinatra_simple.rb
|
189
|
-
- test/frameworks/apps/padrino_simple.rb
|
190
197
|
- test/frameworks/apps/grape_simple.rb
|
191
|
-
- test/
|
198
|
+
- test/frameworks/apps/padrino_simple.rb
|
199
|
+
- test/instrumentation/memcache_test.rb
|
200
|
+
- test/instrumentation/moped_test.rb
|
201
|
+
- test/instrumentation/rack_test.rb
|
202
|
+
- test/instrumentation/http_test.rb
|
192
203
|
- test/instrumentation/redis_hashes_test.rb
|
204
|
+
- test/instrumentation/em_http_request_test.rb
|
193
205
|
- test/instrumentation/redis_misc_test.rb
|
194
|
-
- test/instrumentation/dalli_test.rb
|
195
|
-
- test/instrumentation/redis_keys_test.rb
|
196
|
-
- test/instrumentation/redis_sortedsets_test.rb
|
197
|
-
- test/instrumentation/redis_strings_test.rb
|
198
206
|
- test/instrumentation/redis_sets_test.rb
|
199
|
-
- test/instrumentation/
|
207
|
+
- test/instrumentation/memcached_test.rb
|
208
|
+
- test/instrumentation/redis_keys_test.rb
|
200
209
|
- test/instrumentation/typhoeus_test.rb
|
201
210
|
- test/instrumentation/resque_test.rb
|
202
|
-
- test/instrumentation/em_http_request_test.rb
|
203
|
-
- test/instrumentation/moped_test.rb
|
204
|
-
- test/instrumentation/rack_test.rb
|
205
|
-
- test/instrumentation/memcache_test.rb
|
206
211
|
- test/instrumentation/faraday_test.rb
|
212
|
+
- test/instrumentation/redis_sortedsets_test.rb
|
213
|
+
- test/instrumentation/dalli_test.rb
|
214
|
+
- test/instrumentation/sequel_mysql_test.rb
|
207
215
|
- test/instrumentation/redis_lists_test.rb
|
208
216
|
- test/instrumentation/cassandra_test.rb
|
209
|
-
- test/instrumentation/
|
210
|
-
- test/
|
211
|
-
- test/
|
212
|
-
- test/
|
213
|
-
- test/support/xtrace_test.rb
|
217
|
+
- test/instrumentation/redis_strings_test.rb
|
218
|
+
- test/instrumentation/sequel_pg_test.rb
|
219
|
+
- test/instrumentation/mongo_test.rb
|
220
|
+
- test/instrumentation/sequel_mysql2_test.rb
|