Logstash doesn't generate output file

Hi,

Logstash doesn't generate any output.

My lostash.conf file looks like that:

input {
file {
path => "C:/elastic/KPI-Incidents-test.csv"
start_position => "beginning"
ignore_older => 0
sincedb_path => "NUL"
}
}
filter {
csv {
columns => ["ID do Incidente","Status","Empresa Grupo Suporte","EmpresaConsiderada","DataValorCriado","HoraValorCriado"]
separator => ","
}
}
output {
file {
path => "C:/elastic/Temp/logstash_output_file"
}
}

I can't see any ERROR in the log or something that describes the reason for it.

We run version 6.5.4 on Windows 10

Regards,
Sharon.

That says to ignore any files more than zero seconds old, which is usually every file, so it will process nothing.

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.