Federation Correlations
curl --request GET \
--url http://{host}:{port}/{basePath}/federation/correlations \
--header 'Authorization: <api-key>'import requests
url = "http://{host}:{port}/{basePath}/federation/correlations"
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}/federation/correlations', 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}/federation/correlations",
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}/federation/correlations"
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}/federation/correlations")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://{host}:{port}/{basePath}/federation/correlations")
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": "FederationCorrelations",
"metadata": {
"totalCount": 2,
"page": 1,
"pageSize": 2
},
"items": [
{
"correlationId": "cross-abc123",
"issue": "api-gateway-oom-kill-1774211224",
"namespace": "production",
"severity": "critical",
"signalType": "oom_kill",
"correlatedClusters": "prod-us-east-1,prod-eu-west-1,prod-ap-southeast-1",
"elevated": true,
"cascade": false
},
{
"correlationId": "cross-def456",
"issue": "payment-service-deploy-failing-1774211300",
"namespace": "production",
"severity": "high",
"signalType": "deploy_failing",
"correlatedClusters": "staging-us-east-1,prod-us-east-1",
"elevated": true,
"cascade": true
}
]
}
Federation
Federation Correlations
Returns cross-cluster issue correlations β incidents with the same root cause detected across multiple clusters
GET
/
federation
/
correlations
Federation Correlations
curl --request GET \
--url http://{host}:{port}/{basePath}/federation/correlations \
--header 'Authorization: <api-key>'import requests
url = "http://{host}:{port}/{basePath}/federation/correlations"
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}/federation/correlations', 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}/federation/correlations",
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}/federation/correlations"
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}/federation/correlations")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://{host}:{port}/{basePath}/federation/correlations")
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": "FederationCorrelations",
"metadata": {
"totalCount": 2,
"page": 1,
"pageSize": 2
},
"items": [
{
"correlationId": "cross-abc123",
"issue": "api-gateway-oom-kill-1774211224",
"namespace": "production",
"severity": "critical",
"signalType": "oom_kill",
"correlatedClusters": "prod-us-east-1,prod-eu-west-1,prod-ap-southeast-1",
"elevated": true,
"cascade": false
},
{
"correlationId": "cross-def456",
"issue": "payment-service-deploy-failing-1774211300",
"namespace": "production",
"severity": "high",
"signalType": "deploy_failing",
"correlatedClusters": "staging-us-east-1,prod-us-east-1",
"elevated": true,
"cascade": true
}
]
}
Correlation Fields
| Field | Description |
|---|---|
correlationId | Unique ID grouping related issues across clusters |
issue | The primary issue name |
severity | Issue severity |
signalType | The signal that triggered the correlation |
correlatedClusters | Comma-separated list of affected cluster names |
elevated | Whether the severity was automatically elevated due to cross-cluster impact |
cascade | Whether a cascade failure was detected (staging to production propagation) |
{
"apiVersion": "v1",
"kind": "FederationCorrelations",
"metadata": {
"totalCount": 2,
"page": 1,
"pageSize": 2
},
"items": [
{
"correlationId": "cross-abc123",
"issue": "api-gateway-oom-kill-1774211224",
"namespace": "production",
"severity": "critical",
"signalType": "oom_kill",
"correlatedClusters": "prod-us-east-1,prod-eu-west-1,prod-ap-southeast-1",
"elevated": true,
"cascade": false
},
{
"correlationId": "cross-def456",
"issue": "payment-service-deploy-failing-1774211300",
"namespace": "production",
"severity": "high",
"signalType": "deploy_failing",
"correlatedClusters": "staging-us-east-1,prod-us-east-1",
"elevated": true,
"cascade": true
}
]
}
Authorizations
Bearer token issued by the operator. Format: Authorization: Bearer <token>.
βI