Question

How can we query - FME server database to determine job run time by child script and engine host ?

  • 13 February 2019
  • 1 reply
  • 3 views

Need to get job run time.


1 reply

Userlevel 4

You can use the REST API for this, e.g.

GET /transformations/jobs/id/<jobid>

This will return a JSON object containing the engineHost and engineName, as well as timeStarted and timeFinished.

Reply