Skip to main content
Question

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

  • February 13, 2019
  • 1 reply
  • 8 views

Need to get job run time.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

david_r
Celebrity
  • 8391 replies
  • February 13, 2019

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.