I am unable to see or create index pattern for the ES indexes, as Kiabana says no Data from Elastic Search.
but when I run http://localhost:9200/_cat/indices?pretty
I can see below indexes in ES
green  open .kibana_task_manager       XcFsDnpdTYK90KVNB-fv6w 1 0   2 0             46.2kb  46.2kb
green  open .kibana_1                  vn74gzb6TKSUkCpaD4gFkw 1 0 614 6 32.8kb 332.8kb
yellow open logstash-2019.04.17-000001 w5TF7NmFQ4yh8aeJ2NZulA 1 1   0 0    283b    283b
my logstash config file is as below
 input {
 beats { port => 5400}
     }
  output {
    elasticsearch {
        hosts => ["http://localhost:9200"]
         }
    stdout { codec => rubydebug }   
  }
I want to create logstash index in Kibana but I cant
Please help, I have been  struggling for the past week, and I am using ELK 7.0
