Initial indexing for nodes
Original commit: elastic/x-pack-elasticsearch@45988280b7
This commit is contained in:
parent
695be800ef
commit
f84d2481f3
|
@ -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": {
|
||||
|
|
Loading…
Reference in New Issue