Kibana monitoring gaps when data node is replaced

Thanks for that!

The data is there, but I wonder if other data is missing which would cause the UI to error out like that.

Let's try another query:

POST .monitoring-es-*/_search
{
  "size": 1000,
  "sort": {
    "timestamp": {
      "order": "desc"
    }
  },
  "query": {
    "bool": {
      "filter": [
        {
          "term": {
            "type": "cluster_stats"
          }
        },
        {
          "range": {
            "timestamp": {
              "gte": "2019-12-17T03:48:00.080Z",
              "lte": "2019-12-17T03:49:00.080Z"
            }
          }
        }
      ]
    }
  },
  "collapse": {
    "field": "cluster_uuid"
  }
}