Hi,
I'm trying to monitor my filebeats on Kibana through elasticsearch.
I get the following error:
system_api_version [7] is not supported by system_id
ERROR pipeline/output.go:121 Failed to publish events: 400 Bad Request: {"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"system_api_version [7] is not supported by system_id [beats]"}],"type":"illegal_argument_exception","reason":"system_api_version [7] is not supported by system_id [beats]"},"status":400}
My filebeat.yml
#=========================== Filebeat inputs =============================
filebeat.inputs:
- type: log
  enabled: true
  paths:
- /var/log/pmta/*.csv
  harvester_limit: 20
  scan_frequency: 15s
  ignore_older: 120h
  close_inactive: 5m
#================================ General =====================================
name: everly.mta8.filebeat2
registry_path: /var/lib/filebeat/registry
#================================ Outputs =====================================
#----------------------------- Logstash output --------------------------------
output.logstash:
  hosts: ["remote.everly.com:5044"]
  worker: 16
  bulk_max_size: 4096
  compression_level: 3
  ssl.certificate_authorities: ["/etc/pki/tls/certs/logstash-forwarder-remote.everly.com.crt"]
#================================ Logging =====================================
logging.level: info
logging.to_files: true
logging.files:
  path: /var/log/filebeat
  name: filebeat.log
  keepfiles: 3
  rotateeverybytes: 26214400
#============================== Xpack Monitoring ===============================
xpack.monitoring.enabled: true
xpack.monitoring.elasticsearch:
 hosts: ["http://remote.everly.com:9200"]
What can possible be the problem?