Elasticsearch cluster monitoring

I've successfully setup the 8 node of elasticsearch cluster.In kibana stack monitoring it showing me the disk free space . My question is that is there any setting that it will show me the disk free space of all data nodes i don't want master node disk space and coordinate node disk space

I've successfully setup the 8 node of elasticsearch cluster.I want to determine available space of elasticsearch nodes but why i go to kibana stack monitoring it show me disk of all nodes.Is there any way to see the space of all data node at one place

@Aniket_Pant Run GET /_nodes and get the list of node ID's you want to look at.

Fill in the node ID's in comma separted list in below API call.

GET /_nodes/[NODE ID],[NODE ID],[NODE ID],[NODE ID]/stats/fs

That should return you what you are looking for. But I am not sure if you can query by role (data) so this is the next easiest way I can think of.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.