Hi Steve,
Thanks for posting question to the community!
Unfortunately, you can't get results of all remote services across different applications at once from controller.
But you can get remote services from each application separately by calling our API and edit them by yourself. Here is the URL:
https://docs.appdynamics.com/appd/21.x/21.4/en/extend-appdynamics/appdynamics-apis/application-model-api#id-.ApplicationModelAPIv21.1-RetrieveAllRegisteredBackendsinaBusinessApplicationWithTheirProperties
※Please refer to "GET /controller/rest/applications/application_name/backends"
And if you are using on-premise controller, you can also try to get the result from controller database directly. Here is a query for that, please try to run it to check the result and then write it into your shell script.
mysql> select app.name as application_name, ubci.display_name as remote_service_name from application app, unresolved_backend_call_info ubci, account acc, user u where acc.id = app.account_id and app.id = ubci.application_id and acc.id = u.account_id and u.name = '<username>';
If you are using SaaS controller and you still want to get results from controller database, I'm afraid that maybe you'd better to contact the support team.
Hope this answer helps! Best regards,
Mao
... View more