Hello,
I currently have a workbench that extracts all of my job history, auotmations, dataEndpoints (readers/writers) which I feed into a powerBI dashboard so I can more easily track data i/o, and jobs via using httpcallers and the fme flow rest api v3.
I have just realised there is a issue with this, FeatureReaders, FeatureWriters, SQLExecutors and SQLCreators are excluded when using get “/repositories/{repository}/items/{item}/datasets/{dtype}”… to extract my readers/writers, dtype refers to source or destination, which is only assigned to readers and writers.
The issue is FeatureReaders and FeatureWriter are transformers, they are not included in this output!
What other methods can I use to extract these parameters from the FeatureReaders/FeatureWriters? (source/destination datasets specifically)
How to extract FeatureReader/Writer parameters using FMEFlow Rest API v3
Best answer by todd_davis
Been here:
Only way I know is to read the workspace from Flow and then use it in a FME Workspace reader and get it from the Transformer Parameters
So I call:
$(URL)/fmerest/v3/repositories/@Value(repositoryName)/items/@Value(name)
Accept: application/octet-stream
and then read the workspace:
I look for things in the transformer parameters names like (rather than limiting to FeatureReader/FeatureWriters):
Regex Dataset$|Dataset\{\*\}$
Contains CONNECTION_FILE
etc
It does mean that this process is quite long in the FME Flow has hundreds/thousands of workspaces, but I think you do need to do it, if you really want to understand all the interactions.
Also worth noting the new dependency api call in V4. It does not answer this question, but a newer useful call that can potentially help in specific scenarios: https://demos-safe-software.fmecloud.com/fmeapiv4/docs/index.html
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.