我有一个名为test.csv的输入文件,我将其用作某种配置。每当test.csv文件中有修改时,我如何强制logstash从头开始重新读取文件
编辑: 我的logstash配置
输入{
JNI_VERSION_1_6
}
过滤{
file {
type => "csv_conf"
path => ["/opt/test.csv"]
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
输出{
if ([type] == "csv_conf") {
csv {
columns => ["ip1", "ip2", "desc"]
}
}
}