2015-03-30 07:14:42 +08:00
|
|
|
require_dependency 'memory_diagnostics'
|
|
|
|
|
2014-02-14 12:43:08 +08:00
|
|
|
class Admin::DiagnosticsController < Admin::AdminController
|
|
|
|
layout false
|
|
|
|
skip_before_filter :check_xhr
|
|
|
|
|
|
|
|
def memory_stats
|
2015-02-10 12:54:16 +08:00
|
|
|
text = nil
|
|
|
|
|
|
|
|
if params.key?(:diff)
|
2015-03-30 07:14:42 +08:00
|
|
|
if !MemoryDiagnostics.snapshot_exists?
|
2015-02-10 12:54:16 +08:00
|
|
|
text = "No initial snapshot exists"
|
|
|
|
else
|
2015-03-30 07:14:42 +08:00
|
|
|
text = MemoryDiagnostics.compare
|
2015-02-10 12:54:16 +08:00
|
|
|
end
|
|
|
|
elsif params.key?(:snapshot)
|
2015-03-30 07:14:42 +08:00
|
|
|
MemoryDiagnostics.snapshot_current_process
|
|
|
|
text = "Writing snapshot to: #{MemoryDiagnostics.snapshot_filename}\n\nTo get a diff use ?diff=1"
|
2015-02-10 12:54:16 +08:00
|
|
|
else
|
2015-03-30 07:14:42 +08:00
|
|
|
text = MemoryDiagnostics.memory_report(class_report: params.key?(:full))
|
2015-02-10 12:54:16 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
render text: text, content_type: Mime::TEXT
|
2014-02-14 12:43:08 +08:00
|
|
|
end
|
2014-12-08 06:54:35 +08:00
|
|
|
|
|
|
|
def dump_heap
|
|
|
|
begin
|
|
|
|
# ruby 2.1
|
|
|
|
GC.start(full_mark: true)
|
|
|
|
require 'objspace'
|
|
|
|
|
|
|
|
io = File.open("discourse-heap-#{SecureRandom.hex(3)}.json",'w')
|
|
|
|
ObjectSpace.dump_all(:output => io)
|
|
|
|
io.close
|
|
|
|
|
|
|
|
render text: "HEAP DUMP:\n#{io.path}", content_type: Mime::TEXT
|
|
|
|
rescue
|
|
|
|
render text: "HEAP DUMP:\nnot supported", content_type: Mime::TEXT
|
|
|
|
end
|
|
|
|
end
|
2015-02-10 08:47:44 +08:00
|
|
|
|
2014-02-14 12:43:08 +08:00
|
|
|
end
|