Logstash write from file to file

239 Views Asked by At

I have the following problem: I am new to logstash and I am trying to simply transfer information from one .log file to another. My config file looks like this and logstash is currently running on Windows 10.

input {
file {
    path => "C:/Downloads/Test/input.log"   
    sincedb_path => "NUL"
    start_position => "beginning"
    ignore_older => 0
}   
}

output {

file {
    path => "C:/Downloads/Test/output.log"
}
}

The input file looks like this.

INFO 2018-11-12 13:47:22,378 [AGENT] - [KEY] [METHOD] MESSAGE

The next step would be applying a filter to only transfer the ERROR lines to the output file using a grok filter.

Can anyone help me please?

0

There are 0 best solutions below