美文网首页
elasticsearch 配置nginx索引模板

elasticsearch 配置nginx索引模板

作者: 葵花点穴 | 来源:发表于2018-01-29 17:37 被阅读7次

{

  "index_patterns": "nginx-*",

  "order":    1,

  "settings": {

    "number_of_shards": 1 ,

    "number_of_replicas":0

  },

  "mappings": {

    "doc": {

      "properties": {

        "host_name": {

          "type": "text"

        },

        "request_time":{

          "type":"half_float"

        },

        "bytes":{

          "type":"integer"

        }

      }

    }

  }

}

相关文章

网友评论

      本文标题:elasticsearch 配置nginx索引模板

      本文链接:https://www.haomeiwen.com/subject/kicfzxtx.html