Hi,
I quite often want to know how well my workbenches are running and check the status of the last few jobs. The sort of summary stats i pull out are, avg runtime, max runtime, avg feature count, max feature count, it'd be also nice to plot specific jobs on a graph for these types of stats.
Historically i have always accessed this data through a database connection to the repository fme_job_history table (and it's predecessor), however i'd like to move to using REST if possible.
To do that efficiently though i need a new end point which is something like:
GET transformations<repository><workbench>jobs
This would return a list of all jobs running, queued, and finished etc, relating to that workbench.
ideally i'd also like to be able to pass a query parameter to filter the response, maybe start_date=<ISOdatetime> and end_date=<ISOdatetime>
Surely i can't be the only person doing this?