mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 04:34:32 +08:00
773b22e8d0
Why this change?
This is a follow up to e8f7b62752
.
Tracking of GC stats didn't really belong in the `MethodProfiler` class
so we want to extract that concern into its own class.
As part of this PR, the `track_gc_stat_per_request` site setting has
also been renamed to `instrument_gc_stat_per_request`.
18 lines
422 B
Ruby
18 lines
422 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GCStatInstrumenter
|
|
def self.instrument
|
|
start_gc_stat = GC.stat
|
|
yield
|
|
end_gc_stat = GC.stat
|
|
|
|
{
|
|
gc: {
|
|
time: (end_gc_stat[:time] - start_gc_stat[:time]) / 1000.0,
|
|
major_count: end_gc_stat[:major_gc_count] - start_gc_stat[:major_gc_count],
|
|
minor_count: end_gc_stat[:minor_gc_count] - start_gc_stat[:minor_gc_count],
|
|
},
|
|
}
|
|
end
|
|
end
|