First stop the Auto Refresh on the inventory... sometimes I have issues with that.
Have you turned it to the table view on the right and see what you see?
Interesting can you show me how you see all 76 hosts in Metrics Explore?
And did you press load more charts?
Easy way to test how many host are actually reporting from a data perspective.
Go to Dev Tools
And run this... it will tell you how many unique metricbeat hosts are reporting data in the last 15m
GET /metricbeat-*/_search
{
"size" : 0,
"aggs": {
"hosts": {
"filter": {
"range": {
"@timestamp": {
"gte": "now-15m"
}
}
},
"aggs": {
"num_hosts": {
"cardinality": {
"field": "host.name"
}
}
}
}
}
}
You should get something like this the value below num_hosts
is the number of hosts
{
"took" : 123,
"timed_out" : false,
"_shards" : {
"total" : 7,
"successful" : 7,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 10000,
"relation" : "gte"
},
"max_score" : null,
"hits" : [ ]
},
"aggregations" : {
"hosts" : {
"meta" : { },
"doc_count" : 500770,
"num_hosts" : {
"value" : 4 <<<-------- This Number
}
}
}
}
If you actually wants to see what hosts are there run this. It will show all the hosts...
GET /metricbeat-*/_search
{
"size": 0,
"aggs": {
"hosts": {
"filter": {
"range": {
"@timestamp": {
"gte": "now-15m"
}
}
},
"aggs": {
"num_hosts": {
"terms": {
"field": "host.name",
"size": 200
}
}
}
}
}
}