Using the following GET call, you can list the manager status. This will display a number of useful metrics,
such as start time, datasource, cluster name, the current coordinator, and more.
GET https://localhost:8090/api/v8/manager/status
This will return a simple StatusPayload, similar to the following example:
{
"payloadType" : "StatusPayload",
"payloadVersion" : "1",
"payload" : {
"dataServiceName" : "west",
"dataSourceName" : "db1",
"startTime" : "2024-08-18T06:43:57.873 UTC",
"uptimeSeconds" : 151,
"state" : "ONLINE",
"isCoordinator" : false,
"isWitness" : false,
"managerPID" : 4527,
"parentPID" : 4508,
"policyMode" : "AUTOMATIC",
"coordinator" : "db3",
"jmxUseEncryption" : true,
"jmxUseAuthentication" : true,
"jgroupsUseEncryption" : true,
"dbUseEncryption" : true,
"keystoreLocation" : "/opt/continuent/share/tungsten_keystore.jks",
"trustoreLocation" : "/opt/continuent/share/tungsten_truststore.ts"
}
}