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