Global Cluster Status
curl --request GET \
--url http://{host}:{port}/{basePath}/clusters/global-status \
--header 'Authorization: <api-key>'import requests
url = "http://{host}:{port}/{basePath}/clusters/global-status"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('http://{host}:{port}/{basePath}/clusters/global-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "62437",
CURLOPT_URL => "http://{host}:{port}/{basePath}/clusters/global-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://{host}:{port}/{basePath}/clusters/global-status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://{host}:{port}/{basePath}/clusters/global-status")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://{host}:{port}/{basePath}/clusters/global-status")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"apiVersion": "v1",
"kind": "GlobalStatus",
"metadata": {
"generatedAt": "2026-03-19T15:30:00Z"
},
"status": {
"overall": "degraded",
"clusters": {
"total": 4,
"healthy": 2,
"degraded": 1,
"unreachable": 1
},
"nodes": {
"total": 28,
"ready": 26,
"notReady": 2
},
"incidents": {
"activeTotal": 3,
"bySeverity": {
"critical": 0,
"high": 2,
"medium": 1,
"low": 0
},
"byCluster": {
"prod-sa-east-1": 2,
"staging-sa-east-1": 1
}
},
"resources": {
"avgCpuUsagePercent": 58,
"avgMemoryUsagePercent": 65,
"totalPods": 520,
"totalPodCapacity": 720
},
"slos": {
"total": 8,
"healthy": 5,
"warning": 2,
"breached": 1
},
"federation": {
"primaryCluster": "prod-sa-east-1",
"syncStatus": "healthy",
"lastSyncAt": "2026-03-19T15:29:30Z",
"syncLatency": "250ms"
}
}
}
Clusters
Global Cluster Status
Returns the consolidated status of all federated clusters with a health overview
GET
/
clusters
/
global-status
Global Cluster Status
curl --request GET \
--url http://{host}:{port}/{basePath}/clusters/global-status \
--header 'Authorization: <api-key>'import requests
url = "http://{host}:{port}/{basePath}/clusters/global-status"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('http://{host}:{port}/{basePath}/clusters/global-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "62437",
CURLOPT_URL => "http://{host}:{port}/{basePath}/clusters/global-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://{host}:{port}/{basePath}/clusters/global-status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://{host}:{port}/{basePath}/clusters/global-status")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://{host}:{port}/{basePath}/clusters/global-status")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"apiVersion": "v1",
"kind": "GlobalStatus",
"metadata": {
"generatedAt": "2026-03-19T15:30:00Z"
},
"status": {
"overall": "degraded",
"clusters": {
"total": 4,
"healthy": 2,
"degraded": 1,
"unreachable": 1
},
"nodes": {
"total": 28,
"ready": 26,
"notReady": 2
},
"incidents": {
"activeTotal": 3,
"bySeverity": {
"critical": 0,
"high": 2,
"medium": 1,
"low": 0
},
"byCluster": {
"prod-sa-east-1": 2,
"staging-sa-east-1": 1
}
},
"resources": {
"avgCpuUsagePercent": 58,
"avgMemoryUsagePercent": 65,
"totalPods": 520,
"totalPodCapacity": 720
},
"slos": {
"total": 8,
"healthy": 5,
"warning": 2,
"breached": 1
},
"federation": {
"primaryCluster": "prod-sa-east-1",
"syncStatus": "healthy",
"lastSyncAt": "2026-03-19T15:29:30Z",
"syncLatency": "250ms"
}
}
}
{
"apiVersion": "v1",
"kind": "GlobalStatus",
"metadata": {
"generatedAt": "2026-03-19T15:30:00Z"
},
"status": {
"overall": "degraded",
"clusters": {
"total": 4,
"healthy": 2,
"degraded": 1,
"unreachable": 1
},
"nodes": {
"total": 28,
"ready": 26,
"notReady": 2
},
"incidents": {
"activeTotal": 3,
"bySeverity": {
"critical": 0,
"high": 2,
"medium": 1,
"low": 0
},
"byCluster": {
"prod-sa-east-1": 2,
"staging-sa-east-1": 1
}
},
"resources": {
"avgCpuUsagePercent": 58,
"avgMemoryUsagePercent": 65,
"totalPods": 520,
"totalPodCapacity": 720
},
"slos": {
"total": 8,
"healthy": 5,
"warning": 2,
"breached": 1
},
"federation": {
"primaryCluster": "prod-sa-east-1",
"syncStatus": "healthy",
"lastSyncAt": "2026-03-19T15:29:30Z",
"syncLatency": "250ms"
}
}
}
⌘I