CrossClusterSearchInfoedit

The cross-cluster search settings and status for the Elasticsearch cluster.

Propertiesedit

healthy (boolean, required)
Flag signaling health issues when at least one remote has an incompatible version with this cluster
remote_clusters (array[RemoteClusterInfo], required)
The list of remote clusters this cluster can access using cross-cluster search

Exampleedit

{
   "healthy" : true,
   "remote_clusters" : [
      {
         "compatible" : true,
         "id" : "string",
         "version" : "string"
      }
   ]
}