9 lines
154 B
Ruby
9 lines
154 B
Ruby
class StatusController < ApplicationController
|
|
def index
|
|
@title = "System Status"
|
|
time = Time.now
|
|
@time = time
|
|
@ps = `ps aux`
|
|
end
|
|
end
|