Export diagnostics data as downloadable JSON file
curl --request GET \
--url http://localhost:3000/api/admin/diagnostics/export \
--cookie token=import requests
url = "http://localhost:3000/api/admin/diagnostics/export"
headers = {"cookie": "token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'token='}};
fetch('http://localhost:3000/api/admin/diagnostics/export', 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 => "3000",
CURLOPT_URL => "http://localhost:3000/api/admin/diagnostics/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "token=",
]);
$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://localhost:3000/api/admin/diagnostics/export"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3000/api/admin/diagnostics/export")
.header("cookie", "token=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/admin/diagnostics/export")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'token='
response = http.request(request)
puts response.read_body{
"server": {
"uptime": 123,
"version": "<string>",
"nodeVersion": "<string>",
"platform": "<string>",
"arch": "<string>",
"memory": {
"total": 123,
"free": 123,
"used": 123,
"usagePercent": 123
},
"cpus": 123
},
"health": {
"status": "healthy",
"checks": {
"k8sApi": "healthy",
"kubeBlocks": "healthy",
"database": "healthy"
},
"timestamp": "<string>",
"error": "<string>"
},
"resources": {
"totalClusters": 123,
"recentActivityCount": 123
},
"recentErrors": [
"<unknown>"
],
"timestamp": "<string>",
"versions": {
"helmChart": {
"releaseName": "<string>",
"namespace": "<string>",
"version": "<string>",
"chart": "<string>",
"appVersion": "<string>",
"revision": "<string>",
"status": "<string>",
"updated": "<string>"
},
"server": {
"version": "<string>",
"image": "<string>",
"namespace": "<string>",
"podName": "<string>",
"containerName": "<string>"
},
"ui": {
"version": "<string>",
"image": "<string>",
"namespace": "<string>",
"podName": "<string>",
"containerName": "<string>"
},
"addon": {
"version": "<string>",
"availableVersions": [
"<string>"
],
"componentDefinitions": [
"<string>"
]
}
}
}{
"error": "<string>",
"statusCode": 123,
"message": "<string>"
}Diagnostics
Export diagnostics data as downloadable JSON file
GET
/
api
/
admin
/
diagnostics
/
export
Export diagnostics data as downloadable JSON file
curl --request GET \
--url http://localhost:3000/api/admin/diagnostics/export \
--cookie token=import requests
url = "http://localhost:3000/api/admin/diagnostics/export"
headers = {"cookie": "token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'token='}};
fetch('http://localhost:3000/api/admin/diagnostics/export', 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 => "3000",
CURLOPT_URL => "http://localhost:3000/api/admin/diagnostics/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "token=",
]);
$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://localhost:3000/api/admin/diagnostics/export"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3000/api/admin/diagnostics/export")
.header("cookie", "token=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/admin/diagnostics/export")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'token='
response = http.request(request)
puts response.read_body{
"server": {
"uptime": 123,
"version": "<string>",
"nodeVersion": "<string>",
"platform": "<string>",
"arch": "<string>",
"memory": {
"total": 123,
"free": 123,
"used": 123,
"usagePercent": 123
},
"cpus": 123
},
"health": {
"status": "healthy",
"checks": {
"k8sApi": "healthy",
"kubeBlocks": "healthy",
"database": "healthy"
},
"timestamp": "<string>",
"error": "<string>"
},
"resources": {
"totalClusters": 123,
"recentActivityCount": 123
},
"recentErrors": [
"<unknown>"
],
"timestamp": "<string>",
"versions": {
"helmChart": {
"releaseName": "<string>",
"namespace": "<string>",
"version": "<string>",
"chart": "<string>",
"appVersion": "<string>",
"revision": "<string>",
"status": "<string>",
"updated": "<string>"
},
"server": {
"version": "<string>",
"image": "<string>",
"namespace": "<string>",
"podName": "<string>",
"containerName": "<string>"
},
"ui": {
"version": "<string>",
"image": "<string>",
"namespace": "<string>",
"podName": "<string>",
"containerName": "<string>"
},
"addon": {
"version": "<string>",
"availableVersions": [
"<string>"
],
"componentDefinitions": [
"<string>"
]
}
}
}{
"error": "<string>",
"statusCode": 123,
"message": "<string>"
}Authorizations
JWT token stored in HTTP-only cookie
⌘I