mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-09 07:47:07 +02:00
14 lines
206 B
Ruby
14 lines
206 B
Ruby
class Fluentd
|
|
module Setting
|
|
class ParserApache
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("parser", "apache")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|