Skip to content

healthCheckErrorReport

GetHealthCheckErrorReport returns the detailed failure information for health checks that can have multiple components succeed/fail independently. The failure information is returned in CSV format.

Arguments

Argument Type Description
input (required) GetHealthCheckErrorReportReq! Inputs for getting health check specific errors.

Returns

GetHealthCheckErrorReportReply!

Sample

query HealthCheckErrorReport($input: GetHealthCheckErrorReportReq!) {
  healthCheckErrorReport(input: $input) {
    csvData
  }
}
{
  "input": {}
}
{
  "data": {
    "healthCheckErrorReport": {
      "csvData": "example-string"
    }
  }
}