Understanding /systemalive service logic
I came to know that any AEM instance provides a web service with /systemalive path which responds with a JSON object like this:
{
"systemStatus": "GREEN",
"checks": [
{ "check": "Framework Start Ready Check", "status": "GREEN", "details": "Framework started. Start level: 30; Target start level: 20; Framework state: 32" },
{ "check": "Services Check", "status": "GREEN", "details": "" }
]
}However, I could not find documentation on what exactly the response fields mean and what the logic of their calculation is. Could someone describe it or share a link?