매핑을 가져올 수 없습니다. 패턴과 일치하는 인덱스가 있나요?

매핑을 가져올 수 없습니다. 패턴과 일치하는 인덱스가 있나요?

저는 ELK를 처음 접했고 최근 Windows Server 2008 및 Windows 7 시스템에 ELK를 설치했습니다.

그러나 Kibana를 열면 두 곳 모두에서 "매핑을 가져올 수 없습니다. 패턴과 일치하는 인덱스가 있습니까?"라는 메시지가 나타납니다.

내 Logstash 구성 파일은 다음과 같습니다.

 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
       }
    }

이 URL은 다음을 반환합니다."{"오류":"IndexMissingException[[logstash-] 누락]","상태":404}" http://localhost:5601/elasticsearch/logstash-/_mapping/field/*?ignore_unavailable=false&allow_no_indices=false&include_defaults=true

누구든지 나를 도와주실 수 있나요?

관련 정보