This is an automated email from the ASF dual-hosted git repository.

szaszm pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


    from 0cf3c8fe1 MINIFICPP-1825 Create Properties at compile time
     new 93bc72964 MINIFICPP-2135 Add SSL support for Prometheus reporter
     new 36244376b MINIFICPP-2139 Fix build on ARM7 architecture
     new 55fb8dcd8 MINIFICPP-2157 Move response node implementations to source 
files
     new d559764d2 MINIFICPP-2098 Add ENABLE_ALL for all extensions

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 METRICS.md                                         |   9 +
 cmake/BundledRocksDB.cmake                         |   5 +
 cmake/VerifyPythonCompatibility.cmake              |   2 +-
 docker/test/integration/cluster/ContainerStore.py  |  12 +
 .../test/integration/cluster/DockerTestCluster.py  |   3 +
 .../cluster/containers/MinifiContainer.py          |  29 +-
 .../cluster/containers/PrometheusContainer.py      |  57 ++-
 .../features/MiNiFi_integration_test_driver.py     |  17 +-
 .../test/integration/features/prometheus.feature   |  16 +
 docker/test/integration/features/steps/steps.py    |  10 +
 .../test/integration/ssl_utils/SSL_cert_utils.py   |   4 +
 extensions/bustache/CMakeLists.txt                 |   2 +-
 extensions/kubernetes/CMakeLists.txt               |   3 +-
 extensions/opc/CMakeLists.txt                      |   3 +-
 extensions/opencv/CMakeLists.txt                   |   2 +-
 extensions/openwsman/CMakeLists.txt                |   2 +-
 extensions/pdh/CMakeLists.txt                      |   2 +-
 extensions/prometheus/PrometheusExposerWrapper.cpp |  24 +-
 extensions/prometheus/PrometheusExposerWrapper.h   |  13 +-
 .../prometheus/PrometheusMetricsPublisher.cpp      |  26 +-
 extensions/prometheus/PrometheusMetricsPublisher.h |   6 +-
 extensions/systemd/CMakeLists.txt                  |   2 +-
 extensions/tensorflow/CMakeLists.txt               |   2 +
 libminifi/CMakeLists.txt                           |   3 +
 .../include/core/state/nodes/AgentInformation.h    | 543 +--------------------
 .../include/core/state/nodes/BuildInformation.h    |  79 +--
 .../include/core/state/nodes/DeviceInformation.h   | 348 +------------
 .../include/core/state/nodes/FlowInformation.h     | 142 +-----
 libminifi/include/core/state/nodes/QueueMetrics.h  |  37 +-
 .../include/core/state/nodes/RepositoryMetrics.h   |  20 +-
 .../include/core/state/nodes/SchedulingNodes.h     |  52 +-
 libminifi/include/core/state/nodes/StateMonitor.h  |  18 +-
 .../include/core/state/nodes/TreeUpdateListener.h  |  82 ----
 libminifi/include/properties/Configuration.h       |   2 +
 libminifi/src/Configuration.cpp                    |   2 +
 .../src/core/state/nodes/AgentInformation.cpp      | 378 ++++++++++++++
 .../src/core/state/nodes/BuildInformation.cpp      |  32 +-
 .../src/core/state/nodes/DeviceInformation.cpp     | 287 +++++++++++
 libminifi/src/core/state/nodes/FlowInformation.cpp |  71 +++
 libminifi/src/core/state/nodes/QueueMetrics.cpp    |  16 +
 .../src/core/state/nodes/RepositoryMetrics.cpp     |  12 +
 .../{AgentInformation.cpp => SchedulingNodes.cpp}  |  24 +-
 .../src/core/state/nodes/SupportedOperations.cpp   |  42 +-
 thirdparty/rocksdb/arm7.patch                      |  15 +
 44 files changed, 1098 insertions(+), 1358 deletions(-)
 delete mode 100644 libminifi/include/core/state/nodes/TreeUpdateListener.h
 copy libminifi/src/core/state/nodes/{AgentInformation.cpp => 
SchedulingNodes.cpp} (51%)
 create mode 100644 thirdparty/rocksdb/arm7.patch

Reply via email to