Nuix · Schema

ClusterHealth

Schema for ClusterHealth in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
hasConsumer boolean Boolean indicating whether the cluster has a consumer present.
hasProducer boolean Boolean indicating whether the cluster has a producer present.
ok boolean Boolean indicating the overall cluster health.
nodes array A list of nodes and their cluster health.
View JSON Schema on GitHub

JSON Schema

nuix-rest-clusterhealth.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-clusterhealth.json",
  "title": "ClusterHealth",
  "description": "Schema for ClusterHealth in Nuix REST API",
  "type": "object",
  "properties": {
    "hasConsumer": {
      "type": "boolean",
      "description": "Boolean indicating whether the cluster has a consumer present."
    },
    "hasProducer": {
      "type": "boolean",
      "description": "Boolean indicating whether the cluster has a producer present."
    },
    "ok": {
      "type": "boolean",
      "description": "Boolean indicating the overall cluster health."
    },
    "nodes": {
      "type": "array",
      "description": "A list of nodes and their cluster health.",
      "items": {
        "$ref": "#/components/schemas/NodeHealth"
      }
    }
  }
}