Hi,
In FME Desktop I can add a Header to know the time spent on each transformers.
FME_PROFILE_RESULT_CSV "filepath".
How can I do this on a FME Server?
Hi,
In FME Desktop I can add a Header to know the time spent on each transformers.
FME_PROFILE_RESULT_CSV "filepath".
How can I do this on a FME Server?
You can use the parameter $(FME_SHAREDRESOURCE_DATA) or $(FME_SHAREDRESOURCE_TEMP) to send it to the FME Server Resources.
So I've added the line
FME_PROFILE_RESULT_CSV $(FME_SHAREDRESOURCE_TEMP)report.csv
to the header of my workspace, uploaded it to FME Cloud, ran it and it generated a report.csv in the Temp folder in Resources
Presumably a UNC network path would work too.
You can use the parameter $(FME_SHAREDRESOURCE_DATA) or $(FME_SHAREDRESOURCE_TEMP) to send it to the FME Server Resources.
So I've added the line
FME_PROFILE_RESULT_CSV $(FME_SHAREDRESOURCE_TEMP)report.csv
to the header of my workspace, uploaded it to FME Cloud, ran it and it generated a report.csv in the Temp folder in Resources
Presumably a UNC network path would work too.