raygun-apm 1.0.75-x86-mingw32 → 1.0.80-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 +4 -4
- data/LICENSE +24 -0
- data/lib/raygun/2.5/raygun_ext.so +0 -0
- data/lib/raygun/2.6/raygun_ext.so +0 -0
- data/lib/raygun/2.7/raygun_ext.so +0 -0
- data/lib/raygun/apm/hooks/httpclient.rb +7 -2
- data/lib/raygun/apm/version.rb +1 -1
- data/raygun-apm.gemspec +4 -4
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50f393ff6299523c0fad564b64c6a8070a084bd8b113b0029757c14d65ac5bdc
|
4
|
+
data.tar.gz: bd1ad7664a16c04aa4ee732b2023deaf21d97d7a6c114da8e70b42fbf6cbf1a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: baa1f5acda0f6c675e7e4e8d814059670527fdaa513c60b33fecf942226f72b0047c9fb837d8f48f5594ca48b62682b97bb940b81c5a89232319116dda742cbe
|
7
|
+
data.tar.gz: 8a161e3cd3a25682d2a5f317b4d70aa7e0390bda857bf3fc148f15ea5bd770ca4d4508ae400af09082d2f63c67591effb30676518229147b3b1f4872424f743d
|
data/LICENSE
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Raygun Limited
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
23
|
+
This software bundles Rax, an open source project, released under the BSD two
|
24
|
+
clause license here https://github.com/antirez/rax/blob/master/COPYING
|
Binary file
|
Binary file
|
Binary file
|
@@ -4,6 +4,8 @@ module Raygun
|
|
4
4
|
module Apm
|
5
5
|
module Hooks
|
6
6
|
module HTTPClient
|
7
|
+
private
|
8
|
+
|
7
9
|
def do_request(method, uri, query, body, header, &filtered_block)
|
8
10
|
if tracer = Raygun::Apm::Tracer.instance
|
9
11
|
started = tracer.now
|
@@ -11,7 +13,7 @@ module Raygun
|
|
11
13
|
ended = tracer.now
|
12
14
|
event = raygun_apm_http_out_event
|
13
15
|
event[:pid] = Process.pid
|
14
|
-
event[:url] =
|
16
|
+
event[:url] = raygun_apm_url(uri, query)
|
15
17
|
event[:verb] = method.to_s.upcase
|
16
18
|
event[:status] = response.code.to_i
|
17
19
|
event[:duration] = ended - started
|
@@ -24,7 +26,10 @@ module Raygun
|
|
24
26
|
end
|
25
27
|
end
|
26
28
|
|
27
|
-
|
29
|
+
def raygun_apm_url(uri, query)
|
30
|
+
query && uri ? URI.join(uri, query).to_s : uri.to_s
|
31
|
+
end
|
32
|
+
|
28
33
|
def raygun_apm_http_out_event
|
29
34
|
@_raygun_apm_http_out_event ||= Raygun::Apm::Event::HttpOut.new
|
30
35
|
end
|
data/lib/raygun/apm/version.rb
CHANGED
data/raygun-apm.gemspec
CHANGED
@@ -5,14 +5,14 @@ Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = "raygun-apm"
|
6
6
|
spec.version = Raygun::Apm::VERSION
|
7
7
|
|
8
|
-
spec.authors = ["Raygun
|
9
|
-
spec.email = ["
|
8
|
+
spec.authors = ["Raygun Limited"]
|
9
|
+
spec.email = ["ruby-apm@raygun.io", "support@raygun.com"]
|
10
10
|
|
11
11
|
spec.summary = %q{Raygun application performance monitoring core Profiler}
|
12
12
|
spec.homepage = "https://raygun.com/platform/apm"
|
13
|
-
|
13
|
+
spec.license = "MIT"
|
14
14
|
|
15
|
-
spec.files = Dir['README.rdoc', 'raygun-apm.gemspec', 'lib/**/*', 'bin/**/*'].reject { |f| f.match(/raygun_ext\./) }
|
15
|
+
spec.files = Dir['README.rdoc', 'raygun-apm.gemspec', 'LICENSE', 'lib/**/*', 'bin/**/*'].reject { |f| f.match(/raygun_ext\./) }
|
16
16
|
spec.files += Dir['lib/raygun/**/{2}*/raygun_ext.*']
|
17
17
|
spec.bindir = "bin"
|
18
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raygun-apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.80
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
|
-
- Raygun
|
8
|
-
- Erkki Eilonen
|
7
|
+
- Raygun Limited
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: debase-ruby_core_source
|
@@ -209,12 +208,13 @@ dependencies:
|
|
209
208
|
version: 7.1.2
|
210
209
|
description:
|
211
210
|
email:
|
211
|
+
- ruby-apm@raygun.io
|
212
212
|
- support@raygun.com
|
213
|
-
- info@bearmetal.eu
|
214
213
|
executables: []
|
215
214
|
extensions: []
|
216
215
|
extra_rdoc_files: []
|
217
216
|
files:
|
217
|
+
- LICENSE
|
218
218
|
- README.rdoc
|
219
219
|
- bin/console
|
220
220
|
- bin/raygun-diagnostics
|
@@ -240,7 +240,8 @@ files:
|
|
240
240
|
- lib/raygun/apm/version.rb
|
241
241
|
- raygun-apm.gemspec
|
242
242
|
homepage: https://raygun.com/platform/apm
|
243
|
-
licenses:
|
243
|
+
licenses:
|
244
|
+
- MIT
|
244
245
|
metadata: {}
|
245
246
|
post_install_message:
|
246
247
|
rdoc_options: []
|