<?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: Can we capture the run details of processor and process group? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411910#M253169</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/129601"&gt;@justloseit&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our NiFi experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/80381"&gt;@SAMSAL&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/105558"&gt;@joseomjr&lt;/a&gt;&amp;nbsp; who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Jul 2025 02:13:32 GMT</pubDate>
    <dc:creator>DianaTorres</dc:creator>
    <dc:date>2025-07-30T02:13:32Z</dc:date>
    <item>
      <title>Can we capture the run details of processor and process group?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411904#M253164</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Let's say I have a Process Group that runs once per day and contains a set of processors. What I would like to track is:&lt;/P&gt;&lt;P&gt;When the Process Group started&lt;/P&gt;&lt;P&gt;How long it ran&lt;/P&gt;&lt;P&gt;When it completed&lt;/P&gt;&lt;P&gt;...both at the Process Group level and the individual processor level within the group.&lt;/P&gt;&lt;P&gt;Can we capture this information from NiFi logs? If these details are not available in the logs, where else can I find them?&lt;/P&gt;&lt;P&gt;Basically, I'm working on building a centralized table to store daily run details for each Process Group.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jul 2025 16:20:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411904#M253164</guid>
      <dc:creator>justloseit</dc:creator>
      <dc:date>2025-07-29T16:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can we capture the run details of processor and process group?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411910#M253169</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/129601"&gt;@justloseit&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our NiFi experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/80381"&gt;@SAMSAL&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/105558"&gt;@joseomjr&lt;/a&gt;&amp;nbsp; who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 02:13:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411910#M253169</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2025-07-30T02:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can we capture the run details of processor and process group?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411974#M253173</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/129601"&gt;@justloseit&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;NiFi Process groups are just logical containers for processors.&amp;nbsp; A Process group does not run/execute.&amp;nbsp; Selecting "Start" on a process group triggers starting of all the components within that process group.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In your case it sounds like you have have setup cron scheduling on your ingest/starting processor(s) within the process group.&amp;nbsp; All downstream processors to that source should be set run all the time and not cron based scheduling.&amp;nbsp; So what you are really looking for is how long it took the processors within that process group to process all produced FlowFiles to point of termination?&lt;BR /&gt;&lt;BR /&gt;Besides looking at the lineage data for each FlowFile that traverses all the processor in a process group, I can't think of how else you would get that data.&amp;nbsp; &amp;nbsp;Take a look at the&amp;nbsp;&lt;A href="https://nifi.apache.org/components/org.apache.nifi.reporting.SiteToSiteProvenanceReportingTask/" target="_blank"&gt;SiteToSiteProvenanceReportingTask&lt;/A&gt;&amp;nbsp;available in Apache NiFi.&amp;nbsp; It allows you send the provenance data (produces a lot of data depending on size of yoru dataflows and amount of FlowFiles being processed) via NiFi's Site-To-Site protocol to another NiFi instance (would recommend a separate dedicated NiFi to receive this data).&amp;nbsp; You can then build a&amp;nbsp; dataflow to process that data how you want to retain what information you need, or send it to an external storage/processing system.&lt;/P&gt;&lt;P&gt;Please help our community grow. 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>Wed, 30 Jul 2025 14:17:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Can-we-capture-the-run-details-of-processor-and-process/m-p/411974#M253173</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2025-07-30T14:17:15Z</dc:date>
    </item>
  </channel>
</rss>

