curl
curl --location --request GET 'http://oc1-lts0:9090/v1/config' \
--header 'Accept: application/json'import requests
url = "http://oc1-lts0:9090/v1/config"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://oc1-lts0:9090/v1/config', 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 => "9090",
CURLOPT_URL => "http://oc1-lts0:9090/v1/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://oc1-lts0:9090/v1/config"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://oc1-lts0:9090/v1/config")
.asString();require 'uri'
require 'net/http'
url = URI("http://oc1-lts0:9090/v1/config")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body"{\n \"siloType\": \"xg::runtime::physicalSiloSet_t\",\n \"tlbfsInfo.enabled\": \"false\",\n \"tlbfsInfo.mountPoint\": \"/mnt/name/hugepages1G\",\n \"tlbfsInfo.hugePageSize\": \"1073741824\",\n \"tlbfsInfo.hugePageCount\": \"512\",\n \"memory.warningHpMemoryUsageRatio\": \"0.80000000000000004\",\n \"memory.preferredHpMemoryUsageRatio\": \"0.94999999999999996\",\n \"memory.warningHeapMemoryUsageRatio\": \"0.90000000000000002\",\n \"silos.numSilos\": \"2\",\n \"silos.coreSets.computeCoreMask\": \"0b111111111111000\",\n \"silos.coreSets.ioCoreMask\": \"0b1000000111100000\",\n \"silos.coreSets.networkCoreMask\": \"0b10000000000111100\",\n \"silos.coreSets.generalCoreMask\": \"0b100000000000000111\",\n \"gdsClientParameters_t.batchTimer\": \"150000000n\",\n \"gdsClientParameters_t.maxBatchCount\": \"4096\",\n \"ports.adminsecure\": \"18500\",\n \"ports.data\": \"16500\",\n \"ports.hsi\": \"16900\",\n \"ports.ingress\": \"15300\",\n \"ports.rest\": \"8000\",\n \"ports.sql\": \"3070\",\n \"ports.adminopen\": \"18000\"\n \"operatorvm.vmProtocolParameters.vmClusterRaftFileParameters.fileName\": \"sql0-vmCluster.raft\"\n}"System Information REST Endpoints
Get Configuration Parameters
Retrieve values of configuration parameters.
GET
/
v1
/
config
curl
curl --location --request GET 'http://oc1-lts0:9090/v1/config' \
--header 'Accept: application/json'import requests
url = "http://oc1-lts0:9090/v1/config"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://oc1-lts0:9090/v1/config', 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 => "9090",
CURLOPT_URL => "http://oc1-lts0:9090/v1/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://oc1-lts0:9090/v1/config"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://oc1-lts0:9090/v1/config")
.asString();require 'uri'
require 'net/http'
url = URI("http://oc1-lts0:9090/v1/config")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body"{\n \"siloType\": \"xg::runtime::physicalSiloSet_t\",\n \"tlbfsInfo.enabled\": \"false\",\n \"tlbfsInfo.mountPoint\": \"/mnt/name/hugepages1G\",\n \"tlbfsInfo.hugePageSize\": \"1073741824\",\n \"tlbfsInfo.hugePageCount\": \"512\",\n \"memory.warningHpMemoryUsageRatio\": \"0.80000000000000004\",\n \"memory.preferredHpMemoryUsageRatio\": \"0.94999999999999996\",\n \"memory.warningHeapMemoryUsageRatio\": \"0.90000000000000002\",\n \"silos.numSilos\": \"2\",\n \"silos.coreSets.computeCoreMask\": \"0b111111111111000\",\n \"silos.coreSets.ioCoreMask\": \"0b1000000111100000\",\n \"silos.coreSets.networkCoreMask\": \"0b10000000000111100\",\n \"silos.coreSets.generalCoreMask\": \"0b100000000000000111\",\n \"gdsClientParameters_t.batchTimer\": \"150000000n\",\n \"gdsClientParameters_t.maxBatchCount\": \"4096\",\n \"ports.adminsecure\": \"18500\",\n \"ports.data\": \"16500\",\n \"ports.hsi\": \"16900\",\n \"ports.ingress\": \"15300\",\n \"ports.rest\": \"8000\",\n \"ports.sql\": \"3070\",\n \"ports.adminopen\": \"18000\"\n \"operatorvm.vmProtocolParameters.vmClusterRaftFileParameters.fileName\": \"sql0-vmCluster.raft\"\n}"Response
200 - text/plain
Response
The response is of type string.
Last modified on July 8, 2026
Was this page helpful?
⌘I

