aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/notifications
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-07-24 10:22:22 +0200
committerJosé Valim <jose.valim@gmail.com>2010-07-24 10:22:22 +0200
commit834bd23a07a84ff631da1ded37c643a3a371cb9a (patch)
treeae538e553341baa1bb310e9686a2f07ed319e1c1 /activesupport/lib/active_support/notifications
parent85980852a03f8e01c4079e21a429589380cf0d64 (diff)
downloadrails-834bd23a07a84ff631da1ded37c643a3a371cb9a.tar.gz
rails-834bd23a07a84ff631da1ded37c643a3a371cb9a.tar.bz2
rails-834bd23a07a84ff631da1ded37c643a3a371cb9a.zip
Get rid of instrumenter.elapsed.
Diffstat (limited to 'activesupport/lib/active_support/notifications')
-rw-r--r--activesupport/lib/active_support/notifications/instrumenter.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/activesupport/lib/active_support/notifications/instrumenter.rb b/activesupport/lib/active_support/notifications/instrumenter.rb
index 713d5a5f25..441fefb491 100644
--- a/activesupport/lib/active_support/notifications/instrumenter.rb
+++ b/activesupport/lib/active_support/notifications/instrumenter.rb
@@ -9,30 +9,24 @@ module ActiveSupport
def initialize(notifier)
@id = unique_id
@notifier = notifier
- @started = nil
- @finished = nil
end
# Instrument the given block by measuring the time taken to execute it
# and publish it. Notice that events get sent even if an error occurs
# in the passed-in block
def instrument(name, payload={})
+ started = Time.now
+
begin
- @started = Time.now
yield
rescue Exception => e
payload[:exception] = [e.class.name, e.message]
raise e
ensure
- @finished = Time.now
- @notifier.publish(name, @started, @finished, @id, payload)
+ @notifier.publish(name, started, Time.now, @id, payload)
end
end
- def elapsed
- 1000.0 * (@finished.to_f - @started.to_f)
- end
-
private
def unique_id
SecureRandom.hex(10)