Disallow dynamic mapping
Added config mapping Original commit: elastic/x-pack-elasticsearch@f3de2c17bd
This commit is contained in:
parent
c97e083a59
commit
45e5c13369
|
@ -4,7 +4,8 @@
|
|||
"settings": {
|
||||
"index.number_of_shards": 1,
|
||||
"index.number_of_replicas": 1,
|
||||
"index.alerts.template_version": 1
|
||||
"index.alerts.template_version": 1,
|
||||
"index.mapper.dynamic" : false
|
||||
},
|
||||
"mappings": {
|
||||
"alerthistory": {
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
"settings": {
|
||||
"index.number_of_shards": 1,
|
||||
"index.number_of_replicas": 1,
|
||||
"index.alerts.template_version": 1
|
||||
"index.alerts.template_version": 1,
|
||||
"index.mapper.dynamic" : false
|
||||
},
|
||||
"mappings": {
|
||||
"alert": {
|
||||
|
@ -26,7 +27,7 @@
|
|||
"type": "string"
|
||||
},
|
||||
"ack_state" : {
|
||||
"type": "string"
|
||||
"type": "string"
|
||||
},
|
||||
"trigger": {
|
||||
"type": "object",
|
||||
|
@ -53,6 +54,10 @@
|
|||
"dynamic": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"enabled" : false,
|
||||
"properties" : {}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue