summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-09-19 11:09:18 -0700
committerTim Smith <tsmith@chef.io>2017-09-19 11:14:52 -0700
commit8ac68ce0af38ae93100e06705234d0d6f7e9f29f (patch)
treed6ad90e331fc8c1702a8bebaab7b46d13c6b14d9
parentca251057334898a5cd4c19b4d91d10c7f9ca84a6 (diff)
downloadohai-8ac68ce0af38ae93100e06705234d0d6f7e9f29f.tar.gz
Use benchmark vs. time
Seems like a bit of overkill, but it does nicely format the time strings, which I'll take Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/ohai/application.rb11
-rw-r--r--lib/ohai/runner.rb41
2 files changed, 27 insertions, 25 deletions
diff --git a/lib/ohai/application.rb b/lib/ohai/application.rb
index 51ba6433..3b648e9a 100644
--- a/lib/ohai/application.rb
+++ b/lib/ohai/application.rb
@@ -20,7 +20,7 @@ require "chef-config/workstation_config_loader"
require "ohai"
require "ohai/log"
require "mixlib/cli"
-require "time"
+require "benchmark"
class Ohai::Application
include Mixlib::CLI
@@ -75,10 +75,11 @@ class Ohai::Application
end
def run
- start_time = Time.now
- configure_ohai
- run_application
- Ohai::Log.debug("Ohai took #{Time.now - start_time} total seconds to run.")
+ elapsed = Benchmark.measure do
+ configure_ohai
+ run_application
+ end
+ Ohai::Log.debug("Ohai took #{elapsed.total} total seconds to run.")
end
def configure_ohai
diff --git a/lib/ohai/runner.rb b/lib/ohai/runner.rb
index 87a3f1d8..6368cbe3 100644
--- a/lib/ohai/runner.rb
+++ b/lib/ohai/runner.rb
@@ -18,7 +18,7 @@
#
require "ohai/dsl"
-require "time"
+require "benchmark"
module Ohai
class Runner
@@ -34,28 +34,29 @@ module Ohai
# If force is set to true, then this plugin and its dependencies
# will be run even if they have been run before.
def run_plugin(plugin)
- start_time = Time.now
- unless plugin.kind_of?(Ohai::DSL::Plugin)
- raise Ohai::Exceptions::InvalidPlugin, "Invalid plugin #{plugin} (must be an Ohai::DSL::Plugin or subclass)"
- end
+ elapsed = Benchmark.measure do
+ unless plugin.kind_of?(Ohai::DSL::Plugin)
+ raise Ohai::Exceptions::InvalidPlugin, "Invalid plugin #{plugin} (must be an Ohai::DSL::Plugin or subclass)"
+ end
- begin
- case plugin.version
- when :version7
- run_v7_plugin(plugin)
- when :version6
- run_v6_plugin(plugin)
- else
- raise Ohai::Exceptions::InvalidPlugin, "Invalid plugin version #{plugin.version} for plugin #{plugin}"
+ begin
+ case plugin.version
+ when :version7
+ run_v7_plugin(plugin)
+ when :version6
+ run_v6_plugin(plugin)
+ else
+ raise Ohai::Exceptions::InvalidPlugin, "Invalid plugin version #{plugin.version} for plugin #{plugin}"
+ end
+ rescue Ohai::Exceptions::Error
+ raise
+ rescue SystemExit # abort or exit from plug-in should exit Ohai with failure code
+ raise
+ rescue Exception, Errno::ENOENT => e
+ Ohai::Log.debug("Plugin #{plugin.name} threw exception #{e.inspect} #{e.backtrace.join("\n")}")
end
- rescue Ohai::Exceptions::Error
- raise
- rescue SystemExit # abort or exit from plug-in should exit Ohai with failure code
- raise
- rescue Exception, Errno::ENOENT => e
- Ohai::Log.debug("Plugin #{plugin.name} threw exception #{e.inspect} #{e.backtrace.join("\n")}")
end
- Ohai::Log.debug("Plugin #{plugin.name} took #{Time.now - start_time} seconds to run.")
+ Ohai::Log.debug("Plugin #{plugin.name} took #{elapsed.total} seconds to run.")
end
def run_v6_plugin(plugin)