when i try to load data in to elasticsearch the server of logstash work perfect but in kibana i dont find the index of the csv file
i'm using these config file
input {
file {
path => "C:\Users\pc intervalle\Downloads\Compressed\logstash-7.2.0\bitcoin.csv"
start_position => "beginning"
sincedb_path => "NUL"
}
}
filter {
csv {
separator => ","
columns => ["Date","Open","High","Low","Close","Volume (BTC)", "Volume (Currency)" ,"Weighted Price"]
}
}
output {
elasticsearch {
hosts => "http://localhost:9200"
index => "bitcoin-prices"
}
stdout {}
}
please i need know where is the problem exactly