Marvel: Restore cluster_state.nodes

Original commit: elastic/x-pack-elasticsearch@7cf33baf2a
This commit is contained in:
Tanguy Leroux 2015-12-21 14:27:47 +01:00
parent d5af83da1c
commit d904fa5931
4 changed files with 15 additions and 1 deletions

View File

@ -22,6 +22,7 @@ public class ClusterStateRenderer extends AbstractRenderer<ClusterStateMarvelDoc
"cluster_state.master_node",
"cluster_state.state_uuid",
"cluster_state.status",
"cluster_state.nodes",
};
public ClusterStateRenderer() {

View File

@ -186,6 +186,9 @@
"type": "string",
"index": "not_analyzed"
},
"nodes": {
"enabled": false
},
"shards": {
"type": "object"
}

View File

@ -170,6 +170,7 @@ public class ClusterStateCollectorTests extends AbstractCollectorTestCase {
case ClusterStateCollector.TYPE:
ClusterStateMarvelDoc clusterStateMarvelDoc = (ClusterStateMarvelDoc) marvelDoc;
assertThat(clusterStateMarvelDoc.getClusterState().getRoutingTable().allShards(), hasSize(nbShards));
assertThat(clusterStateMarvelDoc.getClusterState().getNodes().getSize(), equalTo(internalCluster().size()));
break;
case ClusterStateCollector.NODES_TYPE:

View File

@ -5,6 +5,15 @@
"status": "yellow",
"version": 14,
"state_uuid": "lj0hNoO9QaeNa1eR2ukktQ",
"master_node": "__node_id__"
"master_node": "__node_id__",
"nodes": {
"__node_id__": {
"name": "Box",
"transport_address": "inet[/127.0.0.1:9300]",
"attributes": {
"local": "true"
}
}
}
}
}