<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to Track and Display Integration Execution Details in NiFi? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/403241#M251978</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/124328"&gt;@ajay32&lt;/a&gt;&amp;nbsp;Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2025 17:04:01 GMT</pubDate>
    <dc:creator>DianaTorres</dc:creator>
    <dc:date>2025-02-28T17:04:01Z</dc:date>
    <item>
      <title>How to Track and Display Integration Execution Details in NiFi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/402792#M251783</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m working on tracking and monitoring integration executions in Apache NiFi . I want to achieve the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Display all the configured integrations available to users so they can check their execution status.&lt;/LI&gt;&lt;LI&gt;Show all executions of a specific integration with details such as:&lt;UL&gt;&lt;LI&gt;Start time&lt;/LI&gt;&lt;LI&gt;End time&lt;/LI&gt;&lt;LI&gt;Duration&lt;/LI&gt;&lt;LI&gt;Status (success/failure)&lt;/LI&gt;&lt;LI&gt;Total number of sub-items processed, including success and failure counts.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Track all integrations that happened as part of a single execution and display:&lt;UL&gt;&lt;LI&gt;Start time&lt;/LI&gt;&lt;LI&gt;End time&lt;/LI&gt;&lt;LI&gt;Duration&lt;/LI&gt;&lt;LI&gt;Status&lt;/LI&gt;&lt;LI&gt;Any relevant messages or error details&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I’d like to know the best way to implement this in NiFi. Are there recommended processors, templates, or logging strategies that can help achieve this? Should I be using provenance data, custom logging, or NiFi's built-in monitoring tools?&lt;/P&gt;&lt;P&gt;Any insights, examples, or best practices would be greatly appreciated!&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 08:02:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/402792#M251783</guid>
      <dc:creator>ajay32</dc:creator>
      <dc:date>2025-02-24T08:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to Track and Display Integration Execution Details in NiFi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/402844#M251797</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/124328"&gt;@ajay32&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Welcome to the Community!&lt;BR /&gt;&lt;BR /&gt;Unfortunately, I don't think you have provided enough detail to answer your questions.&lt;BR /&gt;&lt;BR /&gt;NiFi is typically is used to build dataflows that are always running, so a clear well defined use case for you dataflow may help the community to provide you with responses.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;"&lt;SPAN&gt;Display all the configured integrations available to users" &amp;lt;-- not clear on yoru ask here.&amp;nbsp; What do you mean by "configured integrations"?&amp;nbsp; Is an integration an End-to-End NiFi Dataflow build on the NiFi canvas?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Show execution details:&lt;/SPAN&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Start Time - Assuming NiFi dataflow, how are your processor components being scheduled?&amp;nbsp; (Cron driven?, Timer Driven?)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;End Time - Downstream processors are not typically scheduled using cron, but rather always running using timer driven to ensure they can process NiFi Flow Files as they are received.&amp;nbsp; There is no communication between one processor and another.&amp;nbsp; NiFi processors simply execute against a NiFi FlowFile and that FlowFile is passed to the next downstream processor.&amp;nbsp; That downstream processor is going to be unaware of how many FlowFiles to expect from the upstream processor.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Duration - The execution of your first Processor in a dataflow will produce a NiFi FlowFile with a timestamp.&amp;nbsp; You could compare that timestamp with current time at end of your complete dataflow execution to calculate how long it took for that FlowFile to process through all NiFi processor components.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Status - What constitutes a "success" and "failure" in your dataflow / use case?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Sub-items - What is a "sub-item" in your dataflow?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Track all integrations:&lt;/SPAN&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;You can build each unique dataflow in a NiFi process group and enable per process group logging by configuring a unique "Log File Suffix" within the process group configuration.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;NiFi provenance is also an option.&amp;nbsp; If you are dealing with multiple unique dataflows, modifying processor names so that those in one complete dataflow share the prefix ("flow1_&amp;lt;processor name&amp;gt;") would make it easier to correlate all events related to a single datflow.&amp;nbsp; There are a few Provenance NiFi reporting tasks that can be used.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Please help our community grow and thrive. If you found&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;any&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on&amp;nbsp;&lt;STRONG&gt;one or more&lt;/STRONG&gt;&amp;nbsp;of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 14:26:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/402844#M251797</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2025-02-24T14:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to Track and Display Integration Execution Details in NiFi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/403241#M251978</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/124328"&gt;@ajay32&lt;/a&gt;&amp;nbsp;Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 17:04:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-Track-and-Display-Integration-Execution-Details-in/m-p/403241#M251978</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2025-02-28T17:04:01Z</dc:date>
    </item>
  </channel>
</rss>

