clusterPortStatusEntity element

Type: clusterPortStatusEntity
Namespace: (default namespace)
XML Schema: ns0.xsd

A serialized representation of this class can be placed in the entity body of a request or response to or from the API. This particular entity holds a reference to a ClusterPortStatusDTO.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <clusterPortStatusEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <clusterPortStatus> <statsLastRefreshed>...</statsLastRefreshed> <nodePortStatus> <node> <heartbeat>...</heartbeat> <connectionRequested>...</connectionRequested> <activeThreadCount>...</activeThreadCount> <queued>...</queued> <address>...</address> <nodeId>...</nodeId> <apiPort>...</apiPort> <status>...</status> <events> <category>...</category> <message>...</message> <timestamp>...</timestamp> </events> <events> <!--...--> </events> <!--...more "events" elements...--> <nodeStartTime>...</nodeStartTime> </node> <portStatus> <bulletins> <id>...</id> <nodeAddress>...</nodeAddress> <groupId>...</groupId> <category>...</category> <message>...</message> <sourceId>...</sourceId> <sourceName>...</sourceName> <level>...</level> <timestamp>...</timestamp> </bulletins> <bulletins> <!--...--> </bulletins> <!--...more "bulletins" elements...--> <activeThreadCount>...</activeThreadCount> <id>...</id> <groupId>...</groupId> <name>...</name> <runStatus>...</runStatus> <input>...</input> <output>...</output> </portStatus> </nodePortStatus> <nodePortStatus> <!--...--> </nodePortStatus> <!--...more "nodePortStatus" elements...--> <portId>...</portId> <portName>...</portName> </clusterPortStatus> </clusterPortStatusEntity>

Example JSON

{ "clusterPortStatus" : { "statsLastRefreshed" : "...", "nodePortStatus" : [ { "node" : { "heartbeat" : "...", "connectionRequested" : "...", "activeThreadCount" : ..., "queued" : "...", "address" : "...", "nodeId" : "...", "apiPort" : ..., "status" : "...", "events" : [ { "category" : "...", "message" : "...", "timestamp" : "..." }, ... ], "nodeStartTime" : "..." }, "portStatus" : { "activeThreadCount" : ..., "id" : "...", "groupId" : "...", "name" : "...", "runStatus" : "...", "input" : "...", "output" : "...", "bulletins" : [ { "id" : ..., "nodeAddress" : "...", "groupId" : "...", "category" : "...", "message" : "...", "sourceId" : "...", "sourceName" : "...", "level" : "...", "timestamp" : "..." }, ... ] } }, ... ], "portId" : "...", "portName" : "..." }, "revision" : { "clientId" : "...", "version" : ... } }