diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-02-17 05:11:55 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-02-17 05:11:55 +0000 |
commit | cfa7df3fbb23f372d673936e68e232441e60097a (patch) | |
tree | 90011e0416a932eb601c0cc693ad97e915f1ae5d /actionpack/lib/action_controller | |
parent | c74c78c88d94a2e3362f9cb55a8a86b2760cfa71 (diff) | |
download | rails-cfa7df3fbb23f372d673936e68e232441e60097a.tar.gz rails-cfa7df3fbb23f372d673936e68e232441e60097a.tar.bz2 rails-cfa7df3fbb23f372d673936e68e232441e60097a.zip |
Added X-Runtime to all responses with the request run time [DHH] (rename from X-Benchmark)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6157 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/benchmarking.rb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/actionpack/lib/action_controller/benchmarking.rb b/actionpack/lib/action_controller/benchmarking.rb index e9844337af..469976e532 100644 --- a/actionpack/lib/action_controller/benchmarking.rb +++ b/actionpack/lib/action_controller/benchmarking.rb @@ -64,16 +64,15 @@ module ActionController #:nodoc: perform_action_without_benchmark else runtime = [ Benchmark::measure{ perform_action_without_benchmark }.real, 0.0001 ].max + log_message = "Completed in #{sprintf("%.5f", runtime)} (#{(1 / runtime).floor} reqs/sec)" log_message << rendering_runtime(runtime) if defined?(@rendering_runtime) log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected? - - log_message_with_status = log_message.dup - log_message_with_status << " | #{headers["Status"]}" - log_message_with_status << " [#{complete_request_uri rescue "unknown"}]" + log_message << " | #{headers["Status"]}" + log_message << " [#{complete_request_uri rescue "unknown"}]" - response.headers["X-Benchmark"] = log_message - logger.info(log_message_with_status) + logger.info(log_message) + response.headers["X-Runtime"] = sprintf("%.5f", runtime) end end @@ -91,4 +90,4 @@ module ActionController #:nodoc: " | DB: #{sprintf("%.5f", db_runtime)} (#{sprintf("%d", db_percentage)}%)" end end -end +end
\ No newline at end of file |