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": { "mappings": {
"_default_": { "_default_": {
"_all": {
"enabled": false
},
"date_detection": false, "date_detection": false,
"properties": { "properties": {
"cluster_uuid": { "cluster_uuid": {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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