No se puede recuperar el mapeo. ¿Tiene índices que coincidan con el patrón?

No se puede recuperar el mapeo. ¿Tiene índices que coincidan con el patrón?

Soy nuevo en ELK y recientemente instalé ELK en Windows Server 2008 y en una máquina con Windows 7.

Pero en ambos lugares, si abro Kibana, aparece el mensaje: "No se puede recuperar el mapeo. ¿Tiene índices que coincidan con el patrón?"

Mi archivo de configuración de Logstash se ve así

 input { 
     file {
  type => "AppLog"
  path => "D:/LogFiles"
  }
  }

filter {
  mutate {
  add_field => [ "hostip", "%{host}" ]
     }
  dns {
  reverse => [ "host" ]
   action => replace
      }
       }

  output {
  elasticsearch {
    host => "localhost"
   protocol => "http"
    codec => rubydebug
       }
    }

Esta URL regresa"{"error":"IndexMissingException[[logstash-] falta]","status":404}" http://localhost:5601/elasticsearch/logstash-/_mapping/field/*?ignore_unavailable=false&allow_no_indices=false&include_defaults=true

¿Podría alguien ayudarme por favor?

información relacionada