Merge pull request elastic/elasticsearch#500 from simianhacker/shard_docs

Moving shards to marvel_shards documents

Original commit: elastic/x-pack-elasticsearch@5f9ec2060c
This commit is contained in:
Khalah Jones Golden 2015-09-04 12:53:57 -04:00
commit 3ec3fd2a89
1 changed files with 12 additions and 1 deletions

View File

@ -207,8 +207,19 @@
},
"marvel_shards": {
"properties": {
"state_uuid": {
"type": "string",
"index": "not_analyzed"
},
"shard": {
"type": "object"
"properties": {
"state": { "type": "string", "index": "not_analyzed" },
"primary": { "type": "boolean" },
"index": { "type": "string", "index": "not_analyzed" },
"relocating_node": { "type": "string", "index": "not_analyzed" },
"shard": { "type": "long" },
"node": { "type": "string", "index": "not_analyzed" }
}
}
}
},