Getting started Community Training Tutorials Documentation APIs, AI & Tools
INFO [hello-world-impl].get:\greeting Received greeting request for name: World
In this final step, you’ll learn how to monitor your deployed API using Runtime Manager, your operations dashboard for CloudHub applications.
From Anypoint Platform, navigate to Runtime Manager.
Make sure you’re viewing the Sandbox environment.
Select your hello-world-impl application.
The dashboard opens.
The dashboard shows real-time metrics:
Running (green) means your API is healthy.
Shows 1/1 (1 running replica out of 1 expected).
The last time the application was updated.
The number of Mule messages the application has processed. Send a few test requests from Postman and watch the Mule Messages graph update.
The average response time of the application.
The number of errors the application has encountered.
Logs help you troubleshoot and understand what your application is doing.
In Runtime Manager, click Logs in the left menu.
You’ll see recent log entries.
Send a request to your API from Postman.
Refresh the logs to see your Logger message:
INFO [hello-world-impl].get:\greeting Received greeting request for name: World
Use log filters:
Filter by INFO, WARN, or ERROR.
Find specific text.
View logs from the last 30 days.
Logs show every request, error, and Logger message from your application.
Your application URL has this structure:
https://hello-world-impl-jsmith.<space-domain>.cloudhub.io/api/greeting
hello-world-impl-jsmith: Your unique application name
<space-domain>: Your Shared Space’s domain
/api/greeting: Your API endpoint path
This URL is publicly accessible and automatically includes:
HTTPS/TLS encryption
Load balancing across replicas
Distributed Denial-of-Service (DDoS) protection
Automatic scaling
Your API is now accessible from any device:
Test the API from your phone’s browser.
Share the URL with teammates.
Call the API from other applications.
Use the API in front-end web apps.
Try it! Open a browser on any device and visit:
https://your-app-url.cloudhub.io/api/greeting?name=World
You’ll see your greeting in the browser.
Congratulations! You’ve completed the full API development lifecycle:
Designed an API spec with Anypoint Code Builder
Developed the API implementation in Anypoint Code Builder
Tested the API locally with debugging tools
Deployed the API to CloudHub 2.0
Verified and monitored the API in Runtime Manager
To remove your tutorial application and free up resources:
In Runtime Manager, click your application.
Click Settings > Delete Application.
Confirm deletion.
Your application is stopped and removed from CloudHub 2.0.