在Filebeat中,可以通過配置processors
選項中的timestamp
字段來設置輸出的時間戳格式。以下是一個示例配置文件,其中定義了時間戳格式為ISO8601:
filebeat.inputs:
- type: log
paths:
- /var/log/*.log
processors:
- timestamp:
field: @timestamp
layouts:
- '2006-01-02T15:04:05.000Z'
在上面的示例中,layouts
字段定義了時間戳的格式為2006-01-02T15:04:05.000Z
,這是ISO8601格式的時間戳。可以根據需要自定義時間戳格式。