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

Hello

Please help me out I'm stuck at Successfully started Logstash API endpoint {:port=>9601}

my conf file

input {
file {
path => "/home/lsdp/Desktop/covid2405.csv"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
filter {
csv {
separator => ","
columns => ["State", "latitude", "longitude", "ActiveCases", "TotalPositive", "TotalDeath"]
}
mutate {
convert => {
"latitude" => "float"
"longitude" => "float"
"Cases" => "integer"
"Recovered" => "integer"
"Death" => "integer"
}
}
mutate {
rename => {
"longitude" => "[location][lon]"
"latitude" => "[location][lat]"
}
}
}
output {
elasticsearch {
hosts => "http://192.168.0.102:9200"
index => "covid2405"
}
stdout {codec => rubydebug}
}

Welcome to our community! :smiley:

It's not stuck, that's likely waiting for input.

I've waited more than 10 min but still nothing has happened

Please share the Logstash logs.

oops sorry just now noticed I've wrongly entered the path.

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