Please help me with this error.this is my conf file
input {
file {
path => "C:/Users/Administrator/Documents/roi1.csv"
start_position => "beginning"
sincedb_path => "NUL"
}
}
filter {
csv {
separator => ","
columns => [ "Date", "ROI" ]
}
date {
locale => "en-US"
match => ["Date","dd-MM-yyyy"]
target => "@timestamp"
}
mutate {
convert => ["ROI", "float"]
}
}
output {
elasticsearch {
hosts => ["192.168.70.36:9200"]
index => "reportingroi"
}
stdout {}
}
The follwing is my csv file from i will be reading my data in the input
Date,ROI
01-08-2018,0
03-08-2018,10.45
04-08-2018,18.65
05-08-2018,16.85
but when i try to run...i get stuck at Successfully started Logstash API endpoint {:port=>9600}.it doesnt proceed further.Please if somebody could help resolve this.
Thanks in advance
ps:i am a complete beginer