Skip to main content
Question

Monitoring Project Name and result Export

  • January 8, 2026
  • 1 reply
  • 31 views

Hello everyone,

I’m trying to export specific details from my monitoring projects and would appreciate some guidance.

For each monitoring project, I want to retrieve only the most recent run, including:

  • Monitoring project name

  • Monitoring project ID

  • Stewardship information

  • Result name

  • Result status

  • Result count -(Passed Count/ Failed Count )

  • Date the run was executed.                                                                                                                                                                                               

I’m currently using a metadata reader to retrieve the monitoring project name, ID, and stewardship, which works as expected. However, when I add fields from the embedded Processing entity and join in the relevant columns, the export returns multiple rows per monitoring project, as it includes historical runs instead of only the latest one.

Has anyone encountered this before? What is the recommended approach to:

  • Filter or identify only the latest Processing run per monitoring project, and

  • Avoid duplicate rows when joining the Processing entity?

1 reply

Forum|alt.badge.img+2
  • Data Pioneer L2
  • January 8, 2026

I have previously completed this through the API calls, and not using the metadata reader. There should be a way to include a “First” variable, that you can limit how many result sets are being returned. In the API Call, I had a variable called   "q0_selector": "limit": 1 which would pull back the most recent run. You may be implement something like this within your reader step