debian-mirror-gitlab/app/views/admin/system_info/show.html.haml

36 lines
1.1 KiB
Text
Raw Normal View History

2019-12-21 20:55:43 +05:30
- page_title _('System Info')
2016-08-24 12:49:21 +05:30
2019-12-04 20:38:33 +05:30
.prepend-top-default
.row
2019-12-21 20:55:43 +05:30
.col-sm
.bg-light.light-well
%h4= _('CPU')
2019-12-04 20:38:33 +05:30
.data
- if @cpus
2019-12-21 20:55:43 +05:30
%h2= _('%{cores} cores') % { cores: @cpus.length }
2019-12-04 20:38:33 +05:30
- else
= icon('warning', class: 'text-warning')
2019-12-21 20:55:43 +05:30
= _('Unable to collect CPU info')
.bg-light.light-well.prepend-top-default
%h4= _('Memory Usage')
2019-12-04 20:38:33 +05:30
.data
- if @memory
2019-12-21 20:55:43 +05:30
%h2 #{number_to_human_size(@memory.active_bytes)} / #{number_to_human_size(@memory.total_bytes)}
2019-12-04 20:38:33 +05:30
- else
= icon('warning', class: 'text-warning')
2019-12-21 20:55:43 +05:30
= _('Unable to collect memory info')
.bg-light.light-well.prepend-top-default
%h4= _('Uptime')
2019-12-04 20:38:33 +05:30
.data
2019-12-21 20:55:43 +05:30
%h2= distance_of_time_in_words_to_now(Rails.application.config.booted_at)
.col-sm
.bg-light.light-well
%h4= _('Disk Usage')
2019-12-04 20:38:33 +05:30
.data
2019-12-21 20:55:43 +05:30
%ul
- @disks.each do |disk|
%li
%h2 #{number_to_human_size(disk[:bytes_used])} / #{number_to_human_size(disk[:bytes_total])}
%p= disk[:disk_name]
%p= disk[:mount_path]