在Filebeat中設置時間戳的時區有以下幾種方法:
timezone
選項來設置時區,如:filebeat.inputs:
- type: log
paths:
- /var/log/*.log
fields_under_root: true
fields:
log_type: syslog
timezone: UTC
TZ
環境變量,如:TZ=UTC filebeat -e
-E
選項來設置時區,如:filebeat -e -E TZ=UTC
processors
選項來修改時間戳的時區,如:filebeat.inputs:
- type: log
paths:
- /var/log/*.log
processors:
- timestamp:
field: @timestamp
timezone: UTC
以上是一些常見的設置Filebeat時間戳時區的方法,可以根據實際情況選擇合適的方法進行設置。