Question when I run this config file
input {
file {
path => "Z:\output\not*.csv"
start position => "beginning"
sincedb_path => "NUL"
}
}
filter {
csv {
separator => ","
}
}
output {
elasticsearch {
host => "http://localhost:9200"
index => "work"
}
stddout {}
}
and it completes i am not getting a "work" Index in Kibana?!?! what could I be doing wrong?