Exiting: Index management requested but the Elasticsearch output is not configured/enabled

Hi,

I configured filebeat.yml with logstash output but I got this error: Exiting: Index management requested but the Elasticsearch output is not configured/enabled

filebeat.yml

filebeat.config:
  modules:
    path: ${path.config}/modules.d/*.yml
    reload.enabled: false

processors:
- add_cloud_metadata: ~

output.logstash:
  hosts: ["10.21.2.237:5044", "10.21.2.226:5044"]
  loadbalance: true

modules.d/apache.yml

- module: apache
  access:
    enabled: true
    var.paths: ["/usr/share/filebeat/logs/access.log*"]
  error:
    enabled: true
    var.paths: ["/usr/share/filebeat/logs/error.log*"]

logstahs.pipeline:

input {
        beats {
                port => 5044
        }

        tcp {
                port => 5000
        }
}

## Add your filters / logstash plugins configuration here

output {
        elasticsearch {
                hosts => "elasticsearch:9200"
                user => "elastic"
                password => "changeme"
                ecs_compatibility => disabled
        }
}

i want filebeat.yml send to logstash on port 5044.

best regard

Olivier

Hi @adouren, I found an older Discuss thread which looks very similar to yours: Error index management Filebeat to Logstash. Could you please take a look and let me know if this is the same issue? If so, then there's an issue open to fix this bug: [Filebeat] setup check gives spurious ILM error · Issue #16336 · elastic/beats · GitHub

Thanks!

Hi cjcenizal,

It may look like my problem ... but there is no good answer in the case...

If I understood correctly, apparently, no possibility for filebeat.yml to send logs to logstash :frowning:

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