diff --git a/app/controllers/admin/system_info_controller.rb b/app/controllers/admin/system_info_controller.rb
index b7333139c57a8dc3f37e973640a6ab0a505a6f9d..3c67370b667beb7bf44ab593a0d5df9c0c0bbb87 100644
--- a/app/controllers/admin/system_info_controller.rb
+++ b/app/controllers/admin/system_info_controller.rb
@@ -1,7 +1,8 @@
 class Admin::SystemInfoController < Admin::ApplicationController
   def show
     system_info = Vmstat.snapshot
-    @load = system_info.load_average.collect { |v| v.round(2) }.join(', ')
+
+    @cpus = system_info.cpus.length
 
     @mem_used = system_info.memory.active_bytes
     @mem_total = system_info.memory.total_bytes
diff --git a/app/views/admin/system_info/show.html.haml b/app/views/admin/system_info/show.html.haml
index 542498cfb22982f022ff364b943bb86a7cf72a4c..3ef2f20b589cb87f3be0d7b2f35188a2ebc5373d 100644
--- a/app/views/admin/system_info/show.html.haml
+++ b/app/views/admin/system_info/show.html.haml
@@ -7,9 +7,9 @@
   .row
     .col-sm-4
       .light-well
-        %h4 CPU Load
+        %h4 CPU
         .data
-          %h1= @load
+          %h1= "#{@cpus} cores"
     .col-sm-4
       .light-well
         %h4 Memory