Summary

Completed

Congratulations! You've learned how to use monitoring for your Java applications on Azure.

In this module, you:

  • Learned about the different forms of monitoring on Azure.

  • Built and deployed a sample microservices application and configured it for application performance monitoring (APM).

  • Monitored the application with Azure Application Insights.

  • Learned how to monitor the entire solution.

Clean up your Azure resources

In the preceding processes, you created Azure resources. If you don't need these resources in the future, delete the resource group by running the following command in Azure Cloud Shell:

az group delete --name <your Resource Group Name> --yes

Delete your log analytics workspace

Deleting your resource group will soft delete your Azure Log Analytics workspace. When soft deleting an Azure Log Analytics workspace, it's placed in a soft-delete state to allow its recovery (including data and connected agents) within 14 days.

If you want to rerun the setup script and re-create your resources, either create a new workspace with a new name, or use the following command to permanently delete the old workspace:

az monitor log-analytics workspace delete --force true --resource-group <your Resource Group Name> --workspace-name <your log analytics workspace name>

References