summaryrefslogtreecommitdiff
path: root/app/views/admin/system_info/show.html.haml
blob: 312ca62cfdfdd13a8054ad18d9f938accfd9d1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
- page_title _('System Info')

.gl-mt-3
.row
  .col-sm
    .bg-light.light-well
      %h4= _('CPU')
      .data
        - if @cpus
          %h2= _('%{cores} cores') % { cores: @cpus.length }
        - else
          = icon('warning', class: 'text-warning')
          = _('Unable to collect CPU info')
    .bg-light.light-well.gl-mt-3
      %h4= _('Memory Usage')
      .data
        - if @memory
          %h2 #{number_to_human_size(@memory.active_bytes)} / #{number_to_human_size(@memory.total_bytes)}
        - else
          = icon('warning', class: 'text-warning')
          = _('Unable to collect memory info')
    .bg-light.light-well.gl-mt-3
      %h4= _('Uptime')
      .data
        %h2= distance_of_time_in_words_to_now(Rails.application.config.booted_at)
  .col-sm
    .bg-light.light-well
      %h4= _('Disk Usage')
      .data
        %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]