HealthCheckReport Data Type

Properties
name data type constraints description
healthCheckResults array of HealthCheckResult  
healthy boolean required
totalResponseTimeMillis number required

Example

{
  "healthCheckResults" : [ {
    "healthCheckType" : "CACHE_SERVICE_CHECK",
    "healthy" : true,
    "responseTimeMillis" : 12345
  }, {
    "healthCheckType" : "PAGE_LOAD_CHECK",
    "healthy" : true,
    "responseTimeMillis" : 12345
  } ],
  "healthy" : true,
  "totalResponseTimeMillis" : 12345
}