raygun-apm 1.0.35-universal-darwin → 1.0.36-universal-darwin

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc7ea8f4cf9785b52cb93ab61962bb2a04cb8484925eef67ca1937bd80c158bc
4
- data.tar.gz: b6c590f30003f293295eabebee67a6a36235cfbfcd80fd29fa3b5b80215fb53e
3
+ metadata.gz: 3af89fec48ec5f0bfef06f395cd59da8ae5e96d449c9ed6eaeded21ac46561b6
4
+ data.tar.gz: 65a3e4ffe65f7e2a2c8c7f1e71afdebfd71f1031c822d313efbb0a5de3d4ecc5
5
5
  SHA512:
6
- metadata.gz: ca0d557bf2499486e71b374c6988e9286421726c417ea2ffdf9eef0b699417dab14c8011423997326893f0237c657d3d724c857ae123280b25841eab9322a4c4
7
- data.tar.gz: 8d049ea576e590a5e1a50a25b418f51bf07b7649fb0cc691d2b1c35fc7976473d78ed7f76700ee2268c4ebcca1093fe1656ce8273f947ff90b3c2ab3adf9b423
6
+ metadata.gz: e521541211151cf48f29247f1b210d661c0cccd1e6c6020b548d4c5b2f8c786a723e8c843751322f8c3a71f73ba2198f4e402402dbe6986a68f7afebfbafe7d1
7
+ data.tar.gz: 14db04ec0fc66a5902e0fa7d1c0d7f24c57ae18ecaa36d416dafe79ec46e2cb1f02272ac53bd218f5fe914f84bf8967dd641e42d08b5cdcb712e347888d8ba06
Binary file
Binary file
Binary file
@@ -219,6 +219,10 @@ module Raygun
219
219
  +HTTPClient::post
220
220
  +HTTPClient::put
221
221
  +HTTPClient::patch
222
+ #stdlib net-http
223
+ +Net::HTTP::get_response
224
+ +Net::HTTP::post
225
+ +Net::HTTP::post_form
222
226
  }
223
227
 
224
228
  def self.extend_with(list)
@@ -24,6 +24,11 @@ module Raygun
24
24
  super + " function_id:#{self[:function_id]} class_name:#{self[:class_name]} method_name:#{self[:method_name]} method_source:#{self[:method_source]}"
25
25
  end
26
26
  end
27
+ class HttpOut < Event
28
+ def inspect
29
+ super + " url:#{self[:url]} verb:#{self[:verb]} status:#{self[:status]} duration:#{self[:duration]}"
30
+ end
31
+ end
27
32
  end
28
33
  end
29
34
  end
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.35"
3
+ VERSION = "1.0.36"
4
4
  end
5
5
  end
data/lib/raygun/apm.rb CHANGED
@@ -8,6 +8,7 @@ end
8
8
  require "raygun/apm/config"
9
9
  require "raygun/apm/tracer"
10
10
  require "raygun/apm/event"
11
+ require "raygun/apm/hooks/net_http"
11
12
 
12
13
  module Raygun
13
14
  module Apm
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.35
4
+ version: 1.0.36
5
5
  platform: universal-darwin
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-05-10 00:00:00.000000000 Z
12
+ date: 2020-05-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debase-ruby_core_source