Merge remote-tracking branch 'dakrone/disable-all-by-default'

Original commit: elastic/x-pack-elasticsearch@835b1b8ac7
This commit is contained in:
Lee Hinman 2017-01-12 10:23:14 -07:00
commit ff15132832
8 changed files with 0 additions and 24 deletions

View File

@ -8,9 +8,6 @@
},
"mappings": {
"_default_": {
"_all": {
"enabled": false
},
"date_detection": false,
"properties": {
"cluster_uuid": {

View File

@ -7,9 +7,6 @@
},
"mappings": {
"_default_": {
"_all": {
"enabled": false
},
"properties": {
"cluster_uuid": {
"type": "keyword"

View File

@ -7,9 +7,6 @@
},
"mappings": {
"_default_": {
"_all": {
"enabled": false
},
"properties": {
"cluster_uuid": {
"type": "keyword"

View File

@ -7,9 +7,6 @@
"mappings": {
"event": {
"dynamic" : "strict",
"_all" : {
"enabled" : false
},
"properties": {
"@timestamp": {
"type": "date",

View File

@ -10,9 +10,6 @@
"mappings": {
"triggered_watch": {
"dynamic" : "strict",
"_all" : {
"enabled" : false
},
"properties": {
"trigger_event": {
"type": "object",

View File

@ -40,9 +40,6 @@
}
],
"dynamic": false,
"_all": {
"enabled": false
},
"properties": {
"watch_id": {
"type": "keyword"

View File

@ -9,9 +9,6 @@
"mappings": {
"watch": {
"dynamic" : "strict",
"_all" : {
"enabled" : false
},
"properties": {
"_status": {
"type": "object",

View File

@ -185,9 +185,6 @@ public class LocalExporterTemplateTests extends MonitoringIntegTestCase {
.endObject()
.startObject("mappings")
.startObject("_default_")
.startObject("_all")
.field("enabled", false)
.endObject()
.field("date_detection", false)
.startObject("properties")
.startObject("cluster_uuid")