Hi everyone
I am using Window and trying to use Logstash 2.4.0. I am using the following config file
Conf Content
input {
file {
path => ["D:\ELK\logstash.log*.csv"]
start_position => "beginning"
}
}
filter {
csv {
columns => ["billing_entity","invoice"]
separator => ","
}
#grok {
match => { "call" => "%{WORD:billing_entity} %{WORD:invoice} %{WORD:company} %{WORD:username} %{WORD:reference} %{NUMBER:line_number} %{NUMBER:recipient_number} %{WORD:zone} %{WORD:network} %{DATE:date} %{TIME:time} %{WORD:country} %{WORD:duration} %{NUMBER:cost} %{WORD:currency} %{WORD:call_origin} %{WORD:billing_type}" }
#}
}
output {
csv {
fields => ["billing_entity","invoice"]
path => "D:\ELK\logstash.log\output\1.csv"
}
}
Source CSV Content
billing_entity,invoice
a,b
1,2
1,2
a,b
Execute Screen
I am stuck after this. Logstash startup complete message doesn't get displayed or file. Kindly help me.