cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

List of Applications that were recently added

Hi We are looking to pull the list of Applications that got added today which are not part of APPD yesterday.

Is there any way we can pull it apart from controller Audit logs.

1 REPLY 1

Hiroki.Ito
AppDynamics Team

Thank you for posting to the community.
If you are using an on-prem controller, you can query the application table in the controller database.
You can access the database by the following command:
"<controller_home>/bin/controller.sh login-db"

A query like below would give results with applications which were created after a specified time.
"select id, name, from_unixtime(created_on/1000) from application where created_on >= {Unix timestamp in milliseconds};"

If you are using SaaS, you may use the "Retrieve All Business Applications" API.

You can get the list of applications that are alive on a specified date.
By getting the list for yesterday and today and comparing them, you can get applications which were added today.
*Time-range-type may not be effective for certain environments depending on the setting. In that case, you may request the API daily and compare the results on daily basis to get new applications added on a certain day.

In addition, although it's not a list, you can see each application's created date from UI.
Application -> Actions -> Edit Application Properties
Attaching snippet for reference.

Best Regards,
Hiroki

 

HirokiIto_0-1624932724068.png


Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.