raygun-apm 0.0.17-x86-linux → 0.0.18-x86-linux

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: 8ace0ee7b5d2e4a2090be753ade2b59a64ed655421731c504bc3c765399fdc0e
4
- data.tar.gz: 468ea1b5a5a46397518f606a39898c3b1f861f5e3c0c82828663d8b741ad029a
3
+ metadata.gz: d3213d03a126da22373d6216f147499bfb1f031b36c375d6888c1dc13f238035
4
+ data.tar.gz: 8c74b5ae7541fa9d9fb0f89f65a491ba05b7571bc5b711a16112a663a2847933
5
5
  SHA512:
6
- metadata.gz: 3fe896ec1ea0268f3284952fef77f0c4faa10569e682aff796476e27b1d1ecbb36ee860a9abddde6c00c43a8a21ddc2d63edba952f4b699740b659c605d72160
7
- data.tar.gz: 107bd6f8e37dca3bf63f46e246e2c60c9d1d8b89241d4cf2e8ffd4762c5d4206f84a891aed3e0fe5f9ab2783c683fc667ad854687517dcb13de9429f1d344d7a
6
+ metadata.gz: d4b0d09bc2f5bdad04ac3f1488f92e9ce6440d29f1bd513dc33b00a64b541b47fc71bd92f8b5b41683cbd8460b576a539d2214d61b3d437caf15b516752fcda1
7
+ data.tar.gz: fbcd5c5ec57a0730701041190d49b48092dd84d3e5c411f367cb6ecc00fbbc6db686b5f2a23b22f4b619b787083ae4772bdf9225e349dbc7ce5f8151ae9f8ae6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- raygun-apm (0.0.17)
4
+ raygun-apm (0.0.18)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
Binary file
Binary file
@@ -33,7 +33,7 @@ module Raygun
33
33
  # Can be nil if we had a kamikaze error
34
34
  @tracer.end_trace if @tracer
35
35
  res
36
- rescue Raygun::APM::FatalError => e
36
+ rescue Raygun::Apm::FatalError => e
37
37
  kamikaze_handler(e)
38
38
  end
39
39
 
@@ -61,7 +61,7 @@ module Raygun
61
61
  event[:status] = notification.payload[:status]
62
62
  # XXX constant milliseconds to microseconds
63
63
  event[:duration] = notification.duration * 1000
64
- event[:timestamp] = Time.now.to_f*1000000
64
+ event[:timestamp] = notification.time.to_f*1000000
65
65
  event[:pid] = Process.pid
66
66
  event[:tid] = @tracer.get_thread_id(Thread.current)
67
67
  @tracer.emit(event)
@@ -88,7 +88,7 @@ module Raygun
88
88
 
89
89
  # XXX constant milliseconds to microseconds
90
90
  event[:duration] = notification.duration * 1000
91
- event[:timestamp] = Time.now.to_f*1000000
91
+ event[:timestamp] = notification.time.to_f*1000000
92
92
  event[:pid] = Process.pid
93
93
  event[:tid] = @tracer.get_thread_id(Thread.current)
94
94
  @tracer.emit(event)
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "0.0.17"
3
+ VERSION = "0.0.18"
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.17
4
+ version: 0.0.18
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Erkki Eilonen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-01 00:00:00.000000000 Z
11
+ date: 2019-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debase-ruby_core_source