Created 03-25-2016 02:17 PM
Is there a way to access NiFi Bulletins using NiFi Rest API ? Is there any documentation available on this ? My goal is to capture NiFi Bulletins using Rest API so I can take some kind of notification action rather than just displaying it in UI.
Created 03-28-2016 01:54 PM
The bulletins are available through the Rest Api. They are accessed primarily through two different endpoints.
/controller/status
Return controller level status. This will include status and bulletins for cluster/node issues, reporting tasks, and controller services.
/controller/process-groups/{id}/status
Return process group specific status. This will include status and bulletins for all components in the specified process group. This endpoint supports a recursive flag to indicate whether status for all descendent components is included.
Created 03-28-2016 01:54 PM
The bulletins are available through the Rest Api. They are accessed primarily through two different endpoints.
/controller/status
Return controller level status. This will include status and bulletins for cluster/node issues, reporting tasks, and controller services.
/controller/process-groups/{id}/status
Return process group specific status. This will include status and bulletins for all components in the specified process group. This endpoint supports a recursive flag to indicate whether status for all descendent components is included.
Created 09-15-2016 04:57 AM
Hi @mgilman - I don't see these endpoints in the REST API documentation.
Created 03-03-2017 09:30 AM
I have been trying to capture bulletin messages. Can you please share the flow and configuration for this if you have achieved using REST-API?
Created 03-03-2017 08:42 PM
Sure, the UI polls from the bulletin-board here [1]. I discussed those endpoints a little bit below.
Created 03-08-2017 11:42 AM
This link shares the code of it, I wanted to know how to configure nifi processors (flow) and where/how to use the endpoints in those processors to capture the bulletin.
Created 09-30-2019 03:19 AM
can you give the full api with other requirements which are needed
Created 09-15-2016 12:50 PM
The documentation on the website will be for the most recently released version of Apache NiFi (specifically 1.0.0). When this question was asked Apache NiFi was still on the 0.x baseline.
In 1.x bulletins are available through the bulletin-board endpoint
/nifi-api/flow/bulletin-board
or bundled with each component. For instance,
/nifi-api/flow/process-groups/{id}
for all components under some process group or
/nifi-api/processors/{id}
for a specific processor.
Created 09-15-2016 07:13 PM
Can you please share the link for 0.7? In general, where can we see documentation for previous releases?
Thanks
Created 03-03-2017 08:36 PM
The website only contains the documentation for the current release. However, you can always access the documentation within the application. You should be able to click the help link in the upper right hand corner. From there, scroll down to the bottom on the left and access the Rest API docs.