raygun-apm 1.0.35-x86-mingw32 → 1.0.36-x86-mingw32

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: cece95e1874124674d4d551e613ff8b1aebf44782300410218ec126320304875
4
- data.tar.gz: 8bd6e69de3674cdc8e3616e6662203a52a9529d523d359e31ef0a62c097a6fce
3
+ metadata.gz: '07391df1df35165a8aa05ef141f1734ab5f292c82673730a95fb8b6f3479d233'
4
+ data.tar.gz: 7e57e2426f7112fe2cb18210550ea07bca4a121e6cc4dc8c50d760e2644e212b
5
5
  SHA512:
6
- metadata.gz: '08a186ed85275642f71061b798a332bb6a01ccdd6766a4a9db435bb31ef8b1d8004168a59f2385db9a3e74186c7fed8591e06c6168868e2ca2a6d2169bb0dd51'
7
- data.tar.gz: 51759124eb01c1a12587d261951e8e29accc4acc0ff6bc4fb07eacad142027b3d7e4d860f36f2978cf3ab9dd010d5aa16b17462cf76a0d8b590b36d28f83a2c6
6
+ metadata.gz: eac09212ac189b58245f8973f3aaf3b4d1e14ab0ef06deb1e328f2ac871e697229a5aabf51834d4a6bbeeb0f13ed9f7db26f6cbdd44fd908327e6cd42c0ed05f
7
+ data.tar.gz: 881beed2e6267f75f931669106caf804560ab2246522f20396f3ece7b297e839d0a064fccd86f7f51f9c507e826e2427e020c0059b494950d532a083174375cb
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: x86-mingw32
6
6
  authors:
7
7
  - Raygun