logstash-best-practice-cn
logstash-best-practice-cn copied to clipboard
本书已出版《ELK Stack权威指南》
Results
2
logstash-best-practice-cn issues
Sort by
recently updated
recently updated
newest added
我现在用的7.9.2版本的logstash,时区可以这样处理,来把这个时间改成上海也就是东八区。 > 很多中国用户经常提一个问题:为什么 @timestamp 比我们早了 8 个小时?怎么修改成北京时间? ``` filter { date { timezone => "Asia/Shanghai" match => [ "logTime", ISO8601 ] target => "logTime" } } ```