raygun-apm 0.0.18-x86-mingw32 → 0.0.19-x86-mingw32

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
  SHA256:
3
- metadata.gz: 94414fe1bea4d3f8804d383c99190a0f0da02983a78148f7e12ebe05eb2ecba8
4
- data.tar.gz: 9bb73484f89e4a5742163cd6a377cd809adfe595238ae3fa5d33993a5a801115
3
+ metadata.gz: 820696ec4c4684591136b8f0e5c1234c79309a7cebe3b2a1bab379b6d428529d
4
+ data.tar.gz: 2d7bbdeb9a96e381ebc000650be713666d35dc45abb566e2f4704b04593bb8f7
5
5
  SHA512:
6
- metadata.gz: '085ae90e46e513c810ebc1f6437a6b41cf06ca6f03cdfd008f68e5489a48517ac7eda5bb27864b17970c05acee0bd0cf8a022070d21cdb48408ade3f0db9ea59'
7
- data.tar.gz: 449fde76717cf57689ebbac3b3963e547e8a446f83252e0410e29578201abbbea075dcb2ca461de0260af740690b515308804e6cc088360b75f14da660be6c20
6
+ metadata.gz: e86c6526cb2229f7f4c23277751b5c2956e71fb03e9d1513283a0f4074a875c0aa1651bcad20ab354e39e44f6da26fda475abdbfe458ef953341c6eb148b10fa
7
+ data.tar.gz: c67aa72c6d56dd0d4c8d45933d338335d23047b7b37a228cbdf7b08de8a469887744176407cd321910626fa6284e3f9e22889f36d68b1acffbda2459b663fcd6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm (0.0.18)
4
+ raygun-apm (0.0.19)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
Binary file
Binary file
@@ -108,6 +108,7 @@ module Raygun
108
108
  ScriptError
109
109
  SecurityError
110
110
  Set
111
+ SimpleDelegator
111
112
  Signal
112
113
  SignalException
113
114
  SizedQueue
@@ -134,6 +135,7 @@ module Raygun
134
135
  UnicodeNormalize
135
136
  Warning
136
137
  ZeroDivisionError
138
+ IPAddr
137
139
  }
138
140
 
139
141
  def self.extend_with(list)
@@ -11,21 +11,10 @@ module Raygun
11
11
  else
12
12
  []
13
13
  end
14
- @blacklist.each do |line|
15
- line.strip!
16
- if line.start_with?('#')
17
- # comment
18
- elsif line.start_with?('+')
19
- add_whitelist line[1..-1]
20
- elsif line.start_with?('-')
21
- add_blacklist line[1..-1]
22
- elsif line.size > 0
23
- add_blacklist line
24
- end
25
- end
26
- Raygun::Apm::Blacklist.resolve_entries.each do |line|
27
- add_blacklist line
28
- end
14
+ add_filters @blacklist
15
+ # Ignore comments set to false here to account for #<Class: etc. in Rails blacklist
16
+ add_filters Raygun::Apm::Blacklist.resolve_entries, ignore_comments: false
17
+ show_filters if config.loglevel == Tracer::LOG_BLACKLIST
29
18
  install_tracepoint(
30
19
  startup_period: config.proton_startup_period,
31
20
  trace_blocks: config.proton_rb_trace_blocks,
@@ -39,6 +28,22 @@ module Raygun
39
28
  raise Raygun::Apm::FatalError, "Raygun APM tracer could not be initialized: #{e.message}"
40
29
  end
41
30
 
31
+ def add_filters(filters, ignore_comments: true)
32
+ filters.each do |filter|
33
+ filter.strip!
34
+ # comment
35
+ if filter.start_with?('#')
36
+ add_blacklist filter unless ignore_comments
37
+ elsif filter.start_with?('+')
38
+ add_whitelist filter[1..-1]
39
+ elsif filter.start_with?('-')
40
+ add_blacklist filter[1..-1]
41
+ elsif filter.size > 0
42
+ add_blacklist filter
43
+ end
44
+ end
45
+ end
46
+
42
47
  def udp_sink!
43
48
  require "socket"
44
49
  sock = UDPSocket.new
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "0.0.18"
3
+ VERSION = "0.0.19"
4
4
  end
5
5
  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: 0.0.18
4
+ version: 0.0.19
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Erkki Eilonen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-06 00:00:00.000000000 Z
11
+ date: 2019-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debase-ruby_core_source