Skip to main content

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.

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.


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.


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!

 

 


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.

 

 


Reply