I am getting No existing kibana index found when i run kibana.
Previously i was able to get the index and visualize the data.
Here is my logstash conf file.
input {
file {
path => "D:/LOGS/log1.txt"
type => "core2"
start_position => "beginning"
}
}
filter {
csv {
columns=>["TYPE","TIMESTAMP","APPNAME"]
separator => ","
}
}
output {
elasticsearch {
action => "index"
host => "localhost"
index => "logstash-%{+YYYY.MM.dd}"
workers => 1
cluster => "myelastic"
}
stdout {
codec => rubydebug
}
}