raygun-apm 1.0.30-x86-mingw32 → 1.0.31-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- 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/apm/tracer.rb +4 -1
- 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: 78f4d41abb56cc4390d30b2a2810bb9ec476fcee82e1b489898334064fb06d7c
|
4
|
+
data.tar.gz: c85ea00237c4f8d34e76f311eb00579a754a1e850ce4decf9a2a69dee587a903
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 355fc7cca19d99159ccf62979e773b20cbfd63f415fef99d6b6cb9e71c1e6a52bae94ea6d266217d47b4dc16f63d312b4710c180a5ca1e0814c801c3909278dd
|
7
|
+
data.tar.gz: b185a45db7a3d9b4ae7e2e4a7317b9f34f3cd4d80299d8ae9ba08d06adda297d7fe7d04792bdba85736ac9dde1c208187d0c9f10868f218d2de77c85c514fc62
|
Binary file
|
Binary file
|
Binary file
|
data/lib/raygun/apm/tracer.rb
CHANGED
@@ -57,10 +57,13 @@ module Raygun
|
|
57
57
|
def udp_sink!
|
58
58
|
require "socket"
|
59
59
|
sock = UDPSocket.new
|
60
|
+
# For UDP sockets, SO_SNDBUF is the max packet size and NOT send buffer as with a connection oriented transport
|
61
|
+
sock.setsockopt(Socket::SOL_SOCKET, Socket::SO_SNDBUF, Tracer::BATCH_PACKET_SIZE)
|
60
62
|
self.udp_sink(
|
61
63
|
socket: sock,
|
62
64
|
host: config.udp_host,
|
63
|
-
port: config.udp_port
|
65
|
+
port: config.udp_port,
|
66
|
+
receive_buffer_size: sock.getsockopt(Socket::SOL_SOCKET, Socket::SO_RCVBUF).int
|
64
67
|
)
|
65
68
|
# Any fails here is kamikaze for the tracer
|
66
69
|
rescue => e
|
data/lib/raygun/apm/version.rb
CHANGED
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.
|
4
|
+
version: 1.0.31
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Raygun
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-04-
|
12
|
+
date: 2020-04-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: debase-ruby_core_source
|