YiSiliang
Results
2
issues of
YiSiliang
我现在用的7.9.2版本的logstash,时区可以这样处理,来把这个时间改成上海也就是东八区。 > 很多中国用户经常提一个问题:为什么 @timestamp 比我们早了 8 个小时?怎么修改成北京时间? ``` filter { date { timezone => "Asia/Shanghai" match => [ "logTime", ISO8601 ] target => "logTime" } } ```
Hi If "between and" go with convert function, the tools are not formatted correctly. ```sql SELECT * FROM table WHERE 1=1 and date BETWEEN str_to_date('2001-01-01', '%Y-%M-%D') AND str_to_date('2001-12-01', '%Y-%M-%D') and...