Hi friends!
I'm trying to up a kibana docker with the version 7.0.0. My elasticsearch container has version 6.5 and previously xpack installed that I installed with another kibana version (6.5).
But now when I try to up the new kibana container i get this error in the logs:
{"type":"log","@timestamp":"2019-05-10T09:06:10Z","tags":["warning","stats-collection"],"pid":1,"message":"Unable to fetch data from reporting collector"}
{"type":"log","@timestamp":"2019-05-10T09:06:13Z","tags":["info","task_manager"],"pid":1,"message":"Installing .kibana_task_manager index template version: 7000099."}
{"type":"log","@timestamp":"2019-05-10T09:06:13Z","tags":["warning","task_manager"],"pid":1,"message":"PollError [illegal_argument_exception] Malformed [mappings] section for type [dynamic], should include an inner object describing the mapping"}
{"type":"log","@timestamp":"2019-05-10T09:06:14Z","tags":["security","error"],"pid":1,"message":"Error registering Kibana Privileges with Elasticsearch for kibana-.kibana: [index_not_found_exception] no such index, with { resource.type=\"index_expression\" & resource.id=\"_security\" & index_uuid=\"_na_\" & index=\"_security\" }"}
{"type":"log","@timestamp":"2019-05-10T09:06:16Z","tags":["info","task_manager"],"pid":1,"message":"Installing .kibana_task_manager index template version: 7000099."}
{"type":"log","@timestamp":"2019-05-10T09:06:16Z","tags":["warning","task_manager"],"pid":1,"message":"PollError [illegal_argument_exception] Malformed [mappings] section for type [dynamic], should include an inner object describing the mapping"}
I dont get to solve it.
My kibana.yml is:
server.name: kibana
server.host: "0"
elasticsearch.hosts: [ "http://10.192.xx.xxx:9200" ]
xpack.monitoring.ui.container.elasticsearch.enabled: true
#super user elasticsearch
elasticsearch.username: "xxxxx"
elasticsearch.password: "xxxxxxxx"
Thanks!