Kentaro Hayashi

Results 285 comments of Kentaro Hayashi

Apply patch and modify your configuration. Something like this: ``` @type sql host HOSTNAME database db_name adapter sqlserver dataserver HOSTNAME/SQLSERVERINSTANCE ... ```

Thanks for testing! > I have just edited and made changes as per your suggestion, that is the only thing I need to do, no compilation or creating package ??...

How about the trace log of `fluentd -vv -c td-agent.conf`?

@Sjolus Thanks! Could you follow DCO instructions and add the appropriate test for this case?

It changes the behavior to the previous version, how about making it customizable? (something like this) ```ruby diff --git a/lib/fluent/plugin/in_sql.rb b/lib/fluent/plugin/in_sql.rb index babec57..beaf4a3 100644 --- a/lib/fluent/plugin/in_sql.rb +++ b/lib/fluent/plugin/in_sql.rb @@ -51,6...

And test like this: ```ruby diff --git a/test/plugin/test_in_sql_with_custom_time.rb b/test/plugin/test_in_sql_with_custom_time.rb index 5bb7e95..e784685 100644 --- a/test/plugin/test_in_sql_with_custom_time.rb +++ b/test/plugin/test_in_sql_with_custom_time.rb @@ -7,6 +7,7 @@ class SqlInputCustomTimeTest < Test::Unit::TestCase end def teardown + Message.destroy_all end...

I guess that `` cause such a result because `**` applies both of them. It may be better to use the exact match for docker log driver or containerd separately....

Then, how about using rewrite tag filter plugin?, it can be distinguished by the `timestamp` and `time` key. ``` @type rewrite_tag_filter key timestamp pattern ... tag docker.${tag} key time pattern...

How about trying `timeout_label`? I mean: ``` @type concat ... timeout_label xxxx @type ... ```

``` @type concat key log separator "" multiline_end_regexp /\n$/ ``` For example, ` I am a test pod ` and ` second line\n` will be concatenated to `I am a...