无法在Elasticsearch中加载索引模板

时间:2018-04-18 13:32:36

标签: elastic-stack filebeat

我正在尝试安装ELK以进行日志集中化。我正在按照数字海洋网站中描述的步骤进行操作:https://www.digitalocean.com/community/tutorials/how-to-install-elasticsearch-logstash-and-kibana-elk-stack-on-ubuntu-14-04

我无法使用此链接中的curl下载filebeat索引模板:  https://gist.githubusercontent.com/thisismitch/3429023e8438cc25b86c/raw/d8c479e2a1adcea8b1fe86570e42abab0f10f364/filebeat-index-template.json

有人可以给我另一个来源吗?

1 个答案:

答案 0 :(得分:0)

以下是该链接的内容:

Sport Shoe 100
Sport Shoe 200

使用以下命令创建一个名为filebeat-index-template.json的文件:

{
  "mappings": {
    "_default_": {
      "_all": {
        "enabled": true,
        "norms": {
          "enabled": false
        }
      },
      "dynamic_templates": [
        {
          "template1": {
            "mapping": {
              "doc_values": true,
              "ignore_above": 1024,
              "index": "not_analyzed",
              "type": "{dynamic_type}"
            },
            "match": "*"
          }
        }
      ],
      "properties": {
        "@timestamp": {
          "type": "date"
        },
        "message": {
          "type": "string",
          "index": "analyzed"
        },
        "offset": {
          "type": "long",
          "doc_values": "true"
        },
        "geoip"  : {
          "type" : "object",
          "dynamic": true,
          "properties" : {
            "location" : { "type" : "geo_point" }
          }
        }
      }
    }
  },
  "settings": {
    "index.refresh_interval": "5s"
  },
  "template": "filebeat-*"
}

然后在这样的编辑器中打开文件:

touch filebeat-index-template.json

然后复制并粘贴上面链接中的内容并保存文件(ctrl + x)。

之后,你应该能够在“加载模板”部分继续进行数字海洋演练。