raygun-apm 1.1.3-x86_64-linux → 1.1.7-x86_64-linux
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.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/3.0/raygun_ext.so +0 -0
- data/lib/raygun/apm/blacklist/parser.rb +2 -0
- data/lib/raygun/apm/blacklist/translator.rb +6 -0
- data/lib/raygun/apm/version.rb +1 -1
- 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: 24a58d4b0b8f2598bd5e7e368ebea9381c5b9dcad8684d08e27bc188f05f50cc
|
4
|
+
data.tar.gz: de97b27e98844846154704dd97d9314a91c8135e3e1cbc9f55ee1a0782a01465
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8602c8cebd7a55af7b7ba1d5ae0894532d6a3c9695f13e134bdbab051cea3cf281090a4189a2179f5b85419a25893ddfa43d8ca466942209a8d35dc2718f448e
|
7
|
+
data.tar.gz: 94ba681ee86fed8039ad5d75ace9223b724898e6d8a45dce849efc770d3733b131370ff97a1a972d92f282040d74071833833651a3bebb7416963b5879bf3377
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -27,6 +27,8 @@ module Raygun
|
|
27
27
|
@tracer.add_whitelist *translate(filter[1..-1])
|
28
28
|
elsif filter.start_with?('-')
|
29
29
|
@tracer.add_blacklist *translate(filter[1..-1])
|
30
|
+
elsif filter.start_with?('L-')
|
31
|
+
@tracer.add_blacklist *translate(filter[2..-1])
|
30
32
|
elsif filter.size > 0
|
31
33
|
@tracer.add_blacklist *translate(filter)
|
32
34
|
end
|
@@ -5,12 +5,14 @@ module Raygun
|
|
5
5
|
class RubyTranslator
|
6
6
|
# Foo::Bar#baz
|
7
7
|
# Foo::Bar.baz
|
8
|
+
# Foo::Bar::baz
|
8
9
|
COMMENT = /^#.*/
|
9
10
|
ANONYMOUS = /^#<.*>?/
|
10
11
|
NAMESPACE = /::/
|
11
12
|
NAMESPACE_ONLY = /::$/
|
12
13
|
METHOD = /#|\./
|
13
14
|
LETTER_CASE = /^[A-Z]/
|
15
|
+
LOWER_CASE = /^[a-z]/
|
14
16
|
|
15
17
|
def translate(filter)
|
16
18
|
path, method = nil, nil
|
@@ -29,6 +31,10 @@ module Raygun
|
|
29
31
|
|
30
32
|
# .NET fallback
|
31
33
|
return if method =~ NAMESPACE
|
34
|
+
if path && (_method = path.split(NAMESPACE).last) =~ LOWER_CASE
|
35
|
+
method = _method
|
36
|
+
path.gsub!(Regexp.compile("::#{method}$"), "")
|
37
|
+
end
|
32
38
|
[path, method]
|
33
39
|
elsif filter =~ ANONYMOUS
|
34
40
|
_, klass, method = filter.split(METHOD)
|
data/lib/raygun/apm/version.rb
CHANGED
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.7
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Raygun Limited
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: debase-ruby_core_source
|