Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.41 KB

ProcessorStatusDTO.md

File metadata and controls

28 lines (21 loc) · 1.41 KB

ProcessorStatusDTO

Properties

Name Type Description Notes
groupId String The unique ID of the process group that the Processor belongs to [optional]
id String The unique ID of the Processor [optional]
name String The name of the Processor [optional]
type String The type of the Processor [optional]
runStatus RunStatusEnum The run status of the Processor [optional]
statsLastRefreshed String The timestamp of when the stats were last refreshed [optional]
aggregateSnapshot ProcessorStatusSnapshotDTO A status snapshot that represents the aggregate stats of all nodes in the cluster. If the NiFi instance is a standalone instance, rather than a cluster, this represents the stats of the single instance. [optional]
nodeSnapshots List<NodeProcessorStatusSnapshotDTO> A status snapshot for each node in the cluster. If the NiFi instance is a standalone instance, rather than a cluster, this may be null. [optional]

Enum: RunStatusEnum

Name Value
RUNNING "Running"
STOPPED "Stopped"
VALIDATING "Validating"
DISABLED "Disabled"
INVALID "Invalid"