Solved

How to know time spent of transformers in FME Server?

  • 3 August 2017
  • 2 replies
  • 0 views

Badge

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?

icon

Best answer by redgeographics 3 August 2017, 09:51

View original

2 replies

Userlevel 5
Badge +25

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

0684Q00000ArJzXQAV.png

Presumably a UNC network path would work too.

Badge

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

0684Q00000ArJzXQAV.png

Presumably a UNC network path would work too.

perfect :)

 

 

Reply