Github user mcgilman commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2607#discussion_r179770521
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/FlowController.java
---
@@ -3846,6 +3851,73 @@ public QueueSize getTotalFlowFileCount(final
ProcessGroup group) {
return new QueueSize(count, contentSize);
}
+ public class GroupStatusCounts {
--- End diff --
This cannot be static as it needs access to the `processScheduler`
---