Skip to content

Latest commit

 

History

History
54 lines (47 loc) · 4.86 KB

ProcessGroupStatusSnapshotDTO.md

File metadata and controls

54 lines (47 loc) · 4.86 KB

ProcessGroupStatusSnapshotDTO

Properties

Name Type Description Notes
id String The id of the process group. [optional]
name String The name of this process group. [optional]
connectionStatusSnapshots List<ConnectionStatusSnapshotEntity> The status of all conenctions in the process group. [optional]
processorStatusSnapshots List<ProcessorStatusSnapshotEntity> The status of all processors in the process group. [optional]
processGroupStatusSnapshots List<ProcessGroupStatusSnapshotEntity> The status of all process groups in the process group. [optional]
remoteProcessGroupStatusSnapshots List<RemoteProcessGroupStatusSnapshotEntity> The status of all remote process groups in the process group. [optional]
inputPortStatusSnapshots List<PortStatusSnapshotEntity> The status of all input ports in the process group. [optional]
outputPortStatusSnapshots List<PortStatusSnapshotEntity> The status of all output ports in the process group. [optional]
versionedFlowState VersionedFlowStateEnum The current state of the Process Group, as it relates to the Versioned Flow [optional]
flowFilesIn Integer The number of FlowFiles that have come into this ProcessGroup in the last 5 minutes [optional]
bytesIn Long The number of bytes that have come into this ProcessGroup in the last 5 minutes [optional]
input String The input count/size for the process group in the last 5 minutes (pretty printed). [optional]
flowFilesQueued Integer The number of FlowFiles that are queued up in this ProcessGroup right now [optional]
bytesQueued Long The number of bytes that are queued up in this ProcessGroup right now [optional]
queued String The count/size that is queued in the the process group. [optional]
queuedCount String The count that is queued for the process group. [optional]
queuedSize String The size that is queued for the process group. [optional]
bytesRead Long The number of bytes read by components in this ProcessGroup in the last 5 minutes [optional]
read String The number of bytes read in the last 5 minutes. [optional]
bytesWritten Long The number of bytes written by components in this ProcessGroup in the last 5 minutes [optional]
written String The number of bytes written in the last 5 minutes. [optional]
flowFilesOut Integer The number of FlowFiles transferred out of this ProcessGroup in the last 5 minutes [optional]
bytesOut Long The number of bytes transferred out of this ProcessGroup in the last 5 minutes [optional]
output String The output count/size for the process group in the last 5 minutes. [optional]
flowFilesTransferred Integer The number of FlowFiles transferred in this ProcessGroup in the last 5 minutes [optional]
bytesTransferred Long The number of bytes transferred in this ProcessGroup in the last 5 minutes [optional]
transferred String The count/size transferred to/from queues in the process group in the last 5 minutes. [optional]
bytesReceived Long The number of bytes received from external sources by components within this ProcessGroup in the last 5 minutes [optional]
flowFilesReceived Integer The number of FlowFiles received from external sources by components within this ProcessGroup in the last 5 minutes [optional]
received String The count/size sent to the process group in the last 5 minutes. [optional]
bytesSent Long The number of bytes sent to an external sink by components within this ProcessGroup in the last 5 minutes [optional]
flowFilesSent Integer The number of FlowFiles sent to an external sink by components within this ProcessGroup in the last 5 minutes [optional]
sent String The count/size sent from this process group in the last 5 minutes. [optional]
activeThreadCount Integer The active thread count for this process group. [optional]

Enum: VersionedFlowStateEnum

Name Value
LOCALLY_MODIFIED_DESCENDANT "LOCALLY_MODIFIED_DESCENDANT"
LOCALLY_MODIFIED "LOCALLY_MODIFIED"
STALE "STALE"
LOCALLY_MODIFIED_AND_STALE "LOCALLY_MODIFIED_AND_STALE"
UP_TO_DATE "UP_TO_DATE"