Skip to main content
Solved

Export list of FME Server Scheduled Jobs to File

  • April 25, 2017
  • 4 replies
  • 95 views

mmccart
Enthusiast
Forum|alt.badge.img+28

Is there a way to export a list of scheduled jobs from FME Server to a txt file or some other format?

Thanks in advance.

Best answer by larry

You can use a REST call to get all the schedules in json format and use json manipulation transformers to get the information you need and then write it to a text file.

See:

http://<Your FME Server address>/fmerest/v2/apidoc/#!/schedules/list_get_0

for API details.

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.

4 replies

Forum|alt.badge.img
  • Best Answer
  • April 25, 2017

You can use a REST call to get all the schedules in json format and use json manipulation transformers to get the information you need and then write it to a text file.

See:

http://<Your FME Server address>/fmerest/v2/apidoc/#!/schedules/list_get_0

for API details.


erik_jan
Contributor
Forum|alt.badge.img+23
  • Contributor
  • April 25, 2017

All this information is stored in the FME Server database (default postgresSQL).

That data can be read using FME (what else) and written to any format of choice.

Be aware not to write anything to the FME Server database as that may corrupt your FME Server instance.


mmccart
Enthusiast
Forum|alt.badge.img+28
  • Author
  • Enthusiast
  • April 25, 2017

You can use a REST call to get all the schedules in json format and use json manipulation transformers to get the information you need and then write it to a text file.

See:

http://<Your FME Server address>/fmerest/v2/apidoc/#!/schedules/list_get_0

for API details.

Thank you!

 

 


itay
Supporter
Forum|alt.badge.img+18
  • Supporter
  • April 25, 2017

You can use a REST call to get all the schedules in json format and use json manipulation transformers to get the information you need and then write it to a text file.

See:

http://<Your FME Server address>/fmerest/v2/apidoc/#!/schedules/list_get_0

for API details.

Yes the API is THE place to extract information about your server behavior.