gitlab-org--gitlab-foss/app/views/admin/system_info/show.html.haml

34 lines
956 B
Text
Raw Normal View History

- @no_container = true
- page_title "System Info"
= render 'admin/background_jobs/head'
2016-06-30 09:01:26 -04:00
%div{ class: container_class }
2016-06-23 08:19:54 -04:00
.prepend-top-default
.row
.col-sm-4
.light-well
%h4 CPU
.data
- if @cpus
%h1= "#{@cpus.length} cores"
- else
%i.fa.fa-warning.text-warning
Unable to collect CPU info
.col-sm-4
.light-well
%h4 Memory
.data
- if @memory
%h1= "#{number_to_human_size(@memory.active_bytes)} / #{number_to_human_size(@memory.total_bytes)}"
- else
%i.fa.fa-warning.text-warning
Unable to collect memory info
.col-sm-4
.light-well
%h4 Disks
.data
- @disks.each do |disk|
%h1= "#{number_to_human_size(disk[:bytes_used])} / #{number_to_human_size(disk[:bytes_total])}"
%p= "#{disk[:disk_name]}"
%p= "#{disk[:mount_path]}"