This is an automated email from the ASF dual-hosted git repository.
rfellows pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
from a2ff5191ca NIFI-14093 Corrected missing config.sh in example for
MiNiFi Toolkit Guide (#10125)
add 9b474f9fc9 NIFI-14770: Allowing the user to reset all counters in a
single action. (#10115)
No new revisions were added by this update.
Summary of changes:
.../repository/StandardCounterRepository.java | 12 +
.../repository/StandardCounterRepositoryTest.java | 161 ++++++
.../controller/repository/CounterRepository.java | 2 +
.../org/apache/nifi/controller/FlowController.java | 5 +
.../org/apache/nifi/web/NiFiServiceFacade.java | 7 +
.../apache/nifi/web/StandardNiFiServiceFacade.java | 565 +++++++++++----------
.../org/apache/nifi/web/api/CountersResource.java | 50 ++
.../nifi/web/controller/ControllerFacade.java | 9 +
.../nifi/web/StandardNiFiServiceFacadeTest.java | 99 ++++
.../app/pages/counters/service/counters.service.ts | 4 +
.../counter-listing/counter-listing.actions.ts | 14 +-
.../counter-listing.effects.spec.ts | 253 +++++++++
.../counter-listing/counter-listing.effects.ts | 45 +-
.../counter-listing.reducer.spec.ts | 211 ++++++++
.../counter-listing/counter-listing.reducer.ts | 7 +
.../pages/counters/state/counter-listing/index.ts | 4 +
.../counter-listing/counter-listing.component.html | 3 +-
.../counter-listing.component.spec.ts | 128 ++++-
.../counter-listing/counter-listing.component.ts | 16 +-
.../counter-table/counter-table.component.html | 57 ++-
.../counter-table/counter-table.component.scss | 14 +
.../counter-table/counter-table.component.spec.ts | 146 +++++-
.../counter-table/counter-table.component.ts | 10 +-
23 files changed, 1501 insertions(+), 321 deletions(-)
create mode 100644
nifi-framework-bundle/nifi-framework/nifi-framework-components/src/test/java/org/apache/nifi/controller/repository/StandardCounterRepositoryTest.java
create mode 100644
nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/counters/state/counter-listing/counter-listing.effects.spec.ts
create mode 100644
nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/counters/state/counter-listing/counter-listing.reducer.spec.ts