This is an another approach of #38.
But I dislike this approach because v0.10 is already EOL and fluentd plugin should be encouraged to use convenient method to prevent making a pitfall.
Because non-regexp splitting way makes some pitfail:
message_out_keys id,name,age
and
message_out_keys id, name, age
is not equal.
Formater is interpreted as ['id', 'name', 'age'].
But latter is ['id', ' name', ' age'].
This is an another approach of #38. But I dislike this approach because v0.10 is already EOL and fluentd plugin should be encouraged to use convenient method to prevent making a pitfall.
Because non-regexp splitting way makes some pitfail:
and
is not equal.
Formater is interpreted as ['id', 'name', 'age']. But latter is ['id', ' name', ' age'].