Below logstash file is not creating the index with the name i specified

input {
stdin {
type => "stdin-type"
}
file {
path => "D:/Attachments/plunk-results.csv"
start_position => "beginning"
}
}

filter {
csv {
columns => ["IHS_URL","count","90Percentile","Average","Minimum","Maximum"]
separator => ","
}
}

output {
elasticsearch { action => "index"
hosts => "localhost"
index => "amanindex"
workers => 1}
}

Are you asking for help or just telling us it's not working?

If you are asking for help, is it creating anything?
What version are you on?
Are there other config files being used?
Have you make sure that there is any output using stdout?

Hi Mark,

I am using 2.4.90 version. i am using the single this is the single config file i am using. While running the bat file i am getting the below output but in kibana index is not getting created.

C:\Users\ash\Desktop\ELK\logstash-2.4.0\logstash-2.4.0\bin>logstash -f logstash.txt
Settings: Default pipeline workers: 4
Pipeline main started

any help in this will be great.

Regards
Aman

Have a look at https://www.elastic.co/guide/en/logstash/current/plugins-inputs-file.html#_tracking_of_current_position_in_watched_files

Thanks it worked. Can you please tell me if i create multiple index in single config file with different input locations.

Regards
Aman

Tell you what?

Its mentioned.. read full line.