mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-14 07:06:17 +10:00
14 lines
355 B
Ruby
14 lines
355 B
Ruby
class Admin::SystemInfoController < Admin::ApplicationController
|
|
def show
|
|
system_info = Vmstat.snapshot
|
|
|
|
@cpus = system_info.cpus.length
|
|
|
|
@mem_used = system_info.memory.active_bytes
|
|
@mem_total = system_info.memory.total_bytes
|
|
|
|
@disk_used = system_info.disks[0].used_bytes
|
|
@disk_total = system_info.disks[0].total_bytes
|
|
end
|
|
end
|