Reputation: 6376
We are using Apache Nifi for our data ingestion purpose from database. We have seen that the flow file started accumulating prior to certain processor due to slow consumption of processor or any other bug.
How can we detect this in realtime via alert/notification if flow file count exceeded (or flow file lag) to certain threshold? Please suggest
Upvotes: 0
Views: 141
Reputation: 28634
to monitor alerts through api use following endpoint:
/nifi-api/flow/bulletin-board?limit=10
the api description you can find here: https://nifi.apache.org/docs/nifi-docs/rest-api/index.html
if you need something else to monitor:
for example "Nifi Bulletin Board" calling following api to get alerts:
Upvotes: 0