All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.core.ml.notifications_index_template.json Maven / Gradle / Ivy

{
  "order" : 0,
  "version" : ${xpack.ml.version.id},
  "index_patterns" : [
    ".ml-notifications-000001"
  ],
  "settings" : {
    "index" : {
      "number_of_shards" : "1",
      "auto_expand_replicas" : "0-1",
      "hidden": true
    }
  },
  "mappings" : {
    "_doc": {
      "_meta" : {
        "version" : "${xpack.ml.version}"
      },
      "dynamic" : "false",
      "properties" : {
        "job_id": {
          "type": "keyword"
        },
        "level": {
          "type": "keyword"
        },
        "message": {
          "type": "text",
          "fields": {
            "raw": {
              "type": "keyword",
              "ignore_above": 1024
            }
          }
        },
        "timestamp": {
          "type": "date"
        },
        "node_name": {
          "type": "keyword"
        },
        "job_type": {
          "type": "keyword"
        }
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy