mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-10 16:27:06 +02:00
8 lines
171 B
Ruby
8 lines
171 B
Ruby
class FluentdController < ApplicationController
|
|
before_action :login_required
|
|
|
|
def index
|
|
@daemons = [Fluentd.new(Rails.root + "tmp" + "fluentd")] # TODO
|
|
end
|
|
end
|