rails/activesupport/lib
Jean Boussier 06d3b358df Replace allocations count by GC time in request logs
Allocations count is often an interesting proxy for performance,
but not necessarily the most relevant thing to include in request
logs, given they aren't a per thread metric, so the reporting
is widely innacurate in multi-threaded environments.

Since Ruby 3.1 there is now `GC.total_time` which is a monotonically
increasing counter of time spent in GC. It still isn't really a per
thread metric, but is is more interesting because it uses the same
unit as the response time, allowing to better see when you have a GC
pause performance issue.
2024-05-08 23:02:35 +02:00
..
active_support Replace allocations count by GC time in request logs 2024-05-08 23:02:35 +02:00
active_support.rb Remove deprecated support for the pre-Ruby 2.4 behavior of to_time 2024-05-01 18:44:31 +00:00