Class: Time
- Inherits:
-
Object
- Object
- Time
- Defined in:
- lib/wavefront-sdk/stdlib/time.rb
Overview
Extensions to the stdlib Time class
Class Method Summary collapse
-
.right_now ⇒ Object
The real hi-res time.
Class Method Details
.right_now ⇒ Object
The real hi-res time. See blog.dnsimple.com/2018/03/elapsed-time-with-ruby-the-right-way/
10 11 12 |
# File 'lib/wavefront-sdk/stdlib/time.rb', line 10 def self.right_now Process.clock_gettime(Process::CLOCK_MONOTONIC) end |