我是 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 返回“{”error“:”IndexMissingException[[logstash-]缺失]”,“状态”:404}” http://localhost:5601/elasticsearch/logstash-/_mapping/field/*?ignore_unavailable=false&allow_no_indices=false&include_defaults=true
有人能帮帮我吗?