Hello,
I have a problem with Logstash.
FluentD is sending logs to external ELK stack.
Whichever option I have tried logstash is not creating index in ES.
Config:
input {
tcp {
port =>
codec => fluent
}
}
output {
elasticsearch {
hosts => ["http://xx.xx.xx.xx:port"]
index => "logstash-%{+YYYY.MM.dd}"
}
}
Any idea what is missing?