Merge remote-tracking branch 'dakrone/disable-all-by-default'
Original commit: elastic/x-pack-elasticsearch@835b1b8ac7
This commit is contained in:
commit
ff15132832
|
@ -8,9 +8,6 @@
|
||||||
},
|
},
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"_default_": {
|
"_default_": {
|
||||||
"_all": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"date_detection": false,
|
"date_detection": false,
|
||||||
"properties": {
|
"properties": {
|
||||||
"cluster_uuid": {
|
"cluster_uuid": {
|
||||||
|
|
|
@ -7,9 +7,6 @@
|
||||||
},
|
},
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"_default_": {
|
"_default_": {
|
||||||
"_all": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"cluster_uuid": {
|
"cluster_uuid": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
|
|
|
@ -7,9 +7,6 @@
|
||||||
},
|
},
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"_default_": {
|
"_default_": {
|
||||||
"_all": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"cluster_uuid": {
|
"cluster_uuid": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
|
|
|
@ -7,9 +7,6 @@
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"event": {
|
"event": {
|
||||||
"dynamic" : "strict",
|
"dynamic" : "strict",
|
||||||
"_all" : {
|
|
||||||
"enabled" : false
|
|
||||||
},
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"@timestamp": {
|
"@timestamp": {
|
||||||
"type": "date",
|
"type": "date",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -40,9 +40,6 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dynamic": false,
|
"dynamic": false,
|
||||||
"_all": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"watch_id": {
|
"watch_id": {
|
||||||
"type": "keyword"
|
"type": "keyword"
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
"mappings": {
|
"mappings": {
|
||||||
"watch": {
|
"watch": {
|
||||||
"dynamic" : "strict",
|
"dynamic" : "strict",
|
||||||
"_all" : {
|
|
||||||
"enabled" : false
|
|
||||||
},
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"_status": {
|
"_status": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue