mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-12 01:07:09 +02:00
18 lines
303 B
Ruby
18 lines
303 B
Ruby
class Fluentd
|
|
module Setting
|
|
class ParserLtsv
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("parser", "ltsv")
|
|
|
|
def self.initial_params
|
|
{
|
|
delimiter: "\t",
|
|
delimiter_pattern: nil,
|
|
label_delimiter: ":"
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|