controllerStatusEntity element
| Type: | controllerStatusEntity |
| 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 ControllerStatusDTO.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<controllerStatusEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<controllerStatus>
<activeThreadCount>...</activeThreadCount>
<queued>...</queued>
<connectedNodes>...</connectedNodes>
<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...-->
<hasPendingAccounts>...</hasPendingAccounts>
<runningCount>...</runningCount>
<stoppedCount>...</stoppedCount>
<invalidCount>...</invalidCount>
<disabledCount>...</disabledCount>
<activeRemotePortCount>...</activeRemotePortCount>
<inactiveRemotePortCount>...</inactiveRemotePortCount>
</controllerStatus>
</controllerStatusEntity>
Example JSON
{
"controllerStatus" : {
"activeThreadCount" : ...,
"queued" : "...",
"connectedNodes" : "...",
"bulletins" : [ {
"id" : ...,
"nodeAddress" : "...",
"groupId" : "...",
"category" : "...",
"message" : "...",
"sourceId" : "...",
"sourceName" : "...",
"level" : "...",
"timestamp" : "..."
}, ... ],
"hasPendingAccounts" : false,
"runningCount" : ...,
"stoppedCount" : ...,
"invalidCount" : ...,
"disabledCount" : ...,
"activeRemotePortCount" : ...,
"inactiveRemotePortCount" : ...
},
"revision" : {
"clientId" : "...",
"version" : ...
}
}