Добрый день.
Использую ELK для postfix
Для теста связи logstash и filebeat в logstash
input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => "localhost:9200"
index => "postfix1-%{+YYYY.MM.dd}"
}
file {
path => "/some/debug"
codec => rubydebug
}
}
В конфиге filebeat.yml
filebeat.inputs:
- type: log
enabled: true
paths:
- /var/log/maillog*
output.logstash:
hosts: ["192.168.199.146:5044"]
xpack.monitoring:
enabled: true
elasticsearch:
hosts: ["http://192.168.199.146:9200"]
Но папка файл /some/debug не создаётся и в Kibana нет индекса.
Warning только в логе filebeat
WARN beater/filebeat.go:152 Filebeat is unable to load the Ingest Node pipelines for the configured modules because the Elasticsearch output is not configured/enabled. If you have already loaded the Ingest Node pipelines or are using Logstash pipelines, you can ignore this warning.
Что можно сделать, чтобы индекс появился ?