ClusterInfo Data Type

Response containing clustering information

Properties
name data type description
feature boolean True if the clustering feature is activated, false if not
master boolean True if this is the master node (or clustering is disabled)
started boolean True if the cluster (hazelcast) is started, false if not
members array of string UUIDs of the cluster members
localMember MemberInfo Info about the local cluster member
Properties inherited from GenericResponse
messages array of Message
responseInfo ResponseInfo

Example

{
  "feature" : true,
  "master" : true,
  "started" : true,
  "members" : [ "...", "..." ],
  "localMember" : {
    "uuid" : "...",
    "name" : "..."
  },
  "messages" : [ {
    "fieldName" : "...",
    "message" : "...",
    "type" : "SUCCESS",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  }, {
    "fieldName" : "...",
    "message" : "...",
    "type" : "NEUTRAL",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  } ],
  "responseInfo" : {
    "responseCode" : "MAINTENANCEMODE",
    "responseMessage" : "...",
    "property" : "..."
  }
}