debian-mirror-gitlab/app/controllers/admin/system_info_controller.rb

59 lines
1.2 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
class Admin::SystemInfoController < Admin::ApplicationController
2020-03-13 15:44:24 +05:30
EXCLUDED_MOUNT_OPTIONS = %w[
nobrowse
read-only
ro
2017-08-17 22:00:37 +05:30
].freeze
2016-08-24 12:49:21 +05:30
EXCLUDED_MOUNT_TYPES = [
'autofs',
'binfmt_misc',
'cgroup',
'debugfs',
'devfs',
'devpts',
'devtmpfs',
'efivarfs',
'fuse.gvfsd-fuse',
'fuseblk',
'fusectl',
'hugetlbfs',
'mqueue',
'proc',
'pstore',
2017-08-17 22:00:37 +05:30
'rpc_pipefs',
2016-08-24 12:49:21 +05:30
'securityfs',
'sysfs',
'tmpfs',
'tracefs',
'vfat'
2017-08-17 22:00:37 +05:30
].freeze
2016-08-24 12:49:21 +05:30
def show
2016-09-13 17:45:13 +05:30
@cpus = Vmstat.cpu rescue nil
@memory = Vmstat.memory rescue nil
2016-08-24 12:49:21 +05:30
mounts = Sys::Filesystem.mounts
@disks = []
mounts.each do |mount|
mount_options = mount.options.split(',')
next if (EXCLUDED_MOUNT_OPTIONS & mount_options).any?
next if (EXCLUDED_MOUNT_TYPES & [mount.mount_type]).any?
begin
disk = Sys::Filesystem.stat(mount.mount_point)
@disks.push({
bytes_total: disk.bytes_total,
bytes_used: disk.bytes_used,
disk_name: mount.name,
mount_path: disk.path
})
rescue Sys::Filesystem::Error
end
end
end
end