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}
}