Skip to content

exocomputeHealthChecks

ExocomputeHealthChecks returns the health checks for the Exocompute configuration.

Arguments

Argument Type Description
input (required) ExocomputeHealthChecksReq! Inputs for getting health checks results.

Returns

ExocomputeHealthChecksReply!

Sample

query ExocomputeHealthChecks($input: ExocomputeHealthChecksReq!) {
  exocomputeHealthChecks(input: $input) {
    executionTime
  }
}
{
  "input": {}
}
{
  "data": {
    "exocomputeHealthChecks": {
      "executionTime": "2024-01-01T00:00:00.000Z",
      "results": [
        {
          "checkCategory": "DEFAULT",
          "checkName": "example-string",
          "checkType": "ACR_CONNECTIVITY"
        }
      ]
    }
  }
}