mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 09:42:02 +08:00
FEATURE: Add live_slots_(start|finish)
for Sidekiq perf logging (#28260)
This information is helpful in debugging memory spikes when Sidekiq processes jobs.
This commit is contained in:
parent
66a23180d4
commit
1a09d6b246
|
@ -69,6 +69,7 @@ module Jobs
|
|||
|
||||
MethodProfiler.ensure_discourse_instrumentation!
|
||||
MethodProfiler.start
|
||||
@data["live_slots_start"] = GC.stat[:heap_live_slots]
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -86,6 +87,7 @@ module Jobs
|
|||
@data["redis_calls"] = profile.dig(:redis, :calls) || 0 # Redis commands
|
||||
@data["net_duration"] = profile.dig(:net, :duration) || 0 # Redis Duration (s)
|
||||
@data["net_calls"] = profile.dig(:net, :calls) || 0 # Redis commands
|
||||
@data["live_slots_finish"] = GC.stat[:heap_live_slots]
|
||||
|
||||
if exception.present?
|
||||
@data["exception"] = exception # Exception - if job fails a json encoded exception
|
||||
|
|
Loading…
Reference in New Issue
Block a user