class StatusController < ApplicationController
  def index
    @title = "System Status"
    time = Time.now
    @time = time
    @ps = `ps aux`
  end
end