raygun-apm 1.1.10-universal-darwin → 1.1.11-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 +4 -4
- data/lib/raygun/2.5/raygun_ext.bundle +0 -0
- data/lib/raygun/2.6/raygun_ext.bundle +0 -0
- data/lib/raygun/2.7/raygun_ext.bundle +0 -0
- data/lib/raygun/3.0/raygun_ext.bundle +0 -0
- data/lib/raygun/apm/config.rb +3 -0
- data/lib/raygun/apm/hooks/excon.rb +1 -1
- data/lib/raygun/apm/hooks/httpclient.rb +1 -1
- data/lib/raygun/apm/hooks/internals.rb +5 -5
- data/lib/raygun/apm/hooks/mongodb.rb +1 -1
- data/lib/raygun/apm/hooks/net_http.rb +1 -1
- data/lib/raygun/apm/hooks/redis.rb +1 -1
- data/lib/raygun/apm/tracer.rb +21 -0
- data/lib/raygun/apm/version.rb +1 -1
- data/lib/raygun/apm.rb +0 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: baf629d9ee033c6ea1ef9828274a2e4ca14f90cdfbbf9a5d7b7c189368298ea7
|
4
|
+
data.tar.gz: f5f2c325f04ba68735a632fc512e6156be2a9037a699ce264f9ab59ee6fdb742
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b38a703a2050546705655b9ec734ac832cba69bd646aac3df0595ad3c16fcce24c5275aa4a96d93409bf78290872b943cb5a3425f4b1ac89ff0fdfa8b03f2134
|
7
|
+
data.tar.gz: 57032094b9643733c4e12196b0727fc146d2ee094c4ae09db10bc6008555f90380ffae24193345b0464a8ebe11167ce12ce5423ba8eb515dc2f3190abd27e4ad
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/raygun/apm/config.rb
CHANGED
@@ -70,6 +70,9 @@ module Raygun
|
|
70
70
|
config_var 'PROTON_UDP_PORT', as: Integer, default: UDP_SINK_PORT
|
71
71
|
config_var 'PROTON_TCP_HOST', as: String, default: TCP_SINK_HOST
|
72
72
|
config_var 'PROTON_TCP_PORT', as: Integer, default: TCP_SINK_PORT
|
73
|
+
## Conditional hooks
|
74
|
+
config_var 'PROTON_HOOK_REDIS', as: :boolean, default: 'True'
|
75
|
+
config_var 'PROTON_HOOK_INTERNALS', as: :boolean, default: 'True'
|
73
76
|
|
74
77
|
def proton_udp_host
|
75
78
|
if proton_use_multicast == 'True'
|
@@ -88,8 +88,8 @@ module Raygun
|
|
88
88
|
end
|
89
89
|
end
|
90
90
|
|
91
|
-
Object
|
92
|
-
IO
|
93
|
-
Random
|
94
|
-
Signal
|
95
|
-
Thread::Mutex
|
91
|
+
Raygun::Apm::Tracer.patch(Object, Raygun::Apm::Hooks::Object)
|
92
|
+
Raygun::Apm::Tracer.patch(IO, Raygun::Apm::Hooks::IO)
|
93
|
+
Raygun::Apm::Tracer.patch(Random, Raygun::Apm::Hooks::Random)
|
94
|
+
Raygun::Apm::Tracer.patch(Signal, Raygun::Apm::Hooks::Signal)
|
95
|
+
Raygun::Apm::Tracer.patch(Thread::Mutex, Raygun::Apm::Hooks::Mutex)
|
@@ -41,5 +41,5 @@ module Raygun
|
|
41
41
|
end
|
42
42
|
|
43
43
|
Mongo::Operation.constants.each do |operation|
|
44
|
-
Mongo::Operation.const_get(operation)
|
44
|
+
Raygun::Apm::Tracer.patch(Mongo::Operation.const_get(operation), Raygun::Apm::Hooks::MongoDB) rescue nil
|
45
45
|
end
|
data/lib/raygun/apm/tracer.rb
CHANGED
@@ -19,6 +19,10 @@ module Raygun
|
|
19
19
|
def instance=(tracer)
|
20
20
|
@__pids[Process.pid] = tracer
|
21
21
|
end
|
22
|
+
|
23
|
+
def patch(concern, hook)
|
24
|
+
concern.prepend(hook) unless concern.ancestors.include?(hook)
|
25
|
+
end
|
22
26
|
end
|
23
27
|
|
24
28
|
attr_accessor :config
|
@@ -28,6 +32,7 @@ module Raygun
|
|
28
32
|
initialize_blacklist
|
29
33
|
register_known_library_paths
|
30
34
|
run_agent_connectivity_diagnostics
|
35
|
+
require_hooks
|
31
36
|
ObjectSpace.define_finalizer(self, proc{ disable_tracepoints })
|
32
37
|
# Any fails here is kamikaze for the tracer
|
33
38
|
rescue => e
|
@@ -105,6 +110,22 @@ module Raygun
|
|
105
110
|
check = Raygun::Apm::Diagnostics.new
|
106
111
|
check.verify_agent(self)
|
107
112
|
end
|
113
|
+
|
114
|
+
def require_hooks
|
115
|
+
require "raygun/apm/hooks/internals" if @config.proton_hook_internals
|
116
|
+
require "raygun/apm/hooks/net_http"
|
117
|
+
# conditionally required - may not be bundled
|
118
|
+
conditional_hooks = %w(httpclient excon mongodb)
|
119
|
+
conditional_hooks.each do |hook|
|
120
|
+
begin
|
121
|
+
require "raygun/apm/hooks/#{hook}"
|
122
|
+
rescue LoadError
|
123
|
+
end
|
124
|
+
end
|
125
|
+
if @config.proton_hook_redis
|
126
|
+
require "raygun/apm/hooks/redis" if defined?(Redis::Client)
|
127
|
+
end
|
128
|
+
end
|
108
129
|
end
|
109
130
|
end
|
110
131
|
end
|
data/lib/raygun/apm/version.rb
CHANGED
data/lib/raygun/apm.rb
CHANGED
@@ -16,13 +16,3 @@ require "raygun/apm/blacklist/parser"
|
|
16
16
|
require "raygun/apm/blacklist/translator"
|
17
17
|
require "raygun/apm/tracer"
|
18
18
|
require "raygun/apm/event"
|
19
|
-
require "raygun/apm/hooks/internals"
|
20
|
-
require "raygun/apm/hooks/net_http"
|
21
|
-
# conditionally required - may not be bundled
|
22
|
-
conditional_hooks = %w(httpclient excon mongodb)
|
23
|
-
conditional_hooks.each do |hook|
|
24
|
-
begin
|
25
|
-
require "raygun/apm/hooks/#{hook}"
|
26
|
-
rescue LoadError
|
27
|
-
end
|
28
|
-
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raygun-apm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.11
|
5
5
|
platform: universal-darwin
|
6
6
|
authors:
|
7
7
|
- Raygun Limited
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: debase-ruby_core_source
|