Monitoring and managing the applications
So far, we deployed our application onto Cloud Foundry. However, the next steps will involve steps on how we can manage and monitor our applications. This can be done in two ways, either through Apps Manager or through the cf CLI. You've already learned how to log on to Apps Manager to create Orgs, Spaces, and add users. With Apps Manager, you are also able to monitor and manage applications as well. We'll explore how to do that in this section. For possible scripting purposes, you may also take the cf CLI route to create, manage, and monitor your application.
Monitoring and managing the application using cf CLI
Using the cf CLI is just as easy as using Apps Manager. This section will show you how key cf CLI commands are used to manage and monitor your application on Cloud Foundry. We'll split this section into two parts. The first is the monitoring of applications and the second is the management of applications.
Monitoring your application
In monitoring...