Logstash

After installing xpack logstash is giving error

my configuration file is
input {
file {
path => "D:/csv/countriesdata.csv"
start_position => "beginning"
sincedb_path => "NUL"
}
}
filter {
csv {
separator => ","
columns => ["Country","Region","Population","Area"]
}
mutate {convert => ["Population", "integer"]}
mutate {convert => ["Area", "integer"]}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
index => "countriesdata-%{+dd.MM.YYYY}"
user => elastic
password => elastic
}
stdout {codec => json_lines }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.