aws-xray 0.35.0 → 0.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de94539e68d8048e57af8669d4e448c4b19caf1b
4
- data.tar.gz: 30d076056f6d338963ff33ed62e3f26a9c0e949a
3
+ metadata.gz: c7d33dc115b581d7db9a5efd5c51f8cbf19eebf1
4
+ data.tar.gz: 282a4613a3d206cabdce7e3f985d4d42933374c6
5
5
  SHA512:
6
- metadata.gz: 9d3fc5b75c99b1968bcffb8421d5d70da6c78e15ae930a1f876df3a91f1b65af59f32397404e880cc7c6efe51b8376136af803356f2612347872438711c5b355
7
- data.tar.gz: 830f48dc665ea1b49e3406317c3a8ac7278a21e5c978a83b7978f514f3431669b5fd53a413c018a5dc087e29a84d88d630c7a738b6c8cc2f08e21800044c64f7
6
+ metadata.gz: e9aaa26eafd03a2c458eec0bd430d7bd05e2415ac16dff7e74efa676ddb6c23b8dcd508c6ece1f1919eddf61c317125b00738c946770f958e420df7e1781f9c0
7
+ data.tar.gz: 0d34aa35bb3a6c9adda2859fee7d386c122e13d195f0f72913a74c97958b2ab99e54d2e7086af69c11affa259450b6faa84715e89de66a88d320db3f317a5c2e
data/README.md CHANGED
@@ -196,6 +196,8 @@ You can enable all the hooks with:
196
196
  gem 'aws-xray', require: 'aws/xray/hooks/all'
197
197
  ```
198
198
 
199
+ NOTE: activerecord hook won't be enabled by this because the hook may produce lots of trace records.
200
+
199
201
  #### net/http hook
200
202
  To monkey patch net/http and records out-going http requests automatically, just require `aws/xray/hooks/net_http`:
201
203
 
@@ -1,4 +1,4 @@
1
+ # Don't require activerecord hook because the hook may produce lots of trace records.
1
2
  require 'aws/xray'
2
- require 'aws/xray/hooks/active_record'
3
3
  require 'aws/xray/hooks/net_http'
4
4
  require 'aws/xray/hooks/rsolr'
@@ -1,5 +1,5 @@
1
1
  module Aws
2
2
  module Xray
3
- VERSION = '0.35.0'
3
+ VERSION = '0.36.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-xray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taiki Ono