Initial indexing for nodes

Original commit: elastic/x-pack-elasticsearch@45988280b7
This commit is contained in:
Chris Cowan 2015-11-05 14:09:19 -07:00
parent 695be800ef
commit f84d2481f3
1 changed files with 17 additions and 0 deletions

View File

@ -202,6 +202,23 @@
}
}
},
"nodes": {
"properties": {
"state_uuid": {
"type": "string",
"index": "not_analyzed"
},
"node": {
"properties": {
"id": { "type": "string", "index": "not_analyzed" },
"name": { "type": "string", "index": "not_analyzed" },
"transport_address": { "type": "string", "index": "not_analyzed" },
"master": { "type": "boolean" },
"attributes": { "type": "object" }
}
}
}
},
"shards": {
"properties": {
"state_uuid": {