Stuck at Successfully started Logstash API endpoint {:port=>9600}

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

Double check the path of your input file. It's most likely not doing anything since there may be a typo in the the path and it cannot find the file.

1 Like

yeah i have checked it and i also tried to change the slash direction but still it doesnt work

Can you try changing the sincedb_path parameter value in the input filter to a valid windows path/file reference?
For example:
sincedb_path => "C:\csv_sincedb"

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