Learn how to monitor your Vultr Optimized Cloud Compute instances performance metrics including CPU usage, disk operations, and bandwidth statistics.
Monitoring an instance provides information about its performance and usage statistics. This enables you to track the instance's activity, health, and resource usage. You can monitor the vCPU usage, disk operations and bandwidth statistics on a Vultr Cloud Compute instance.
Follow this guide to monitor a Vultr Optimized Cloud Compute instance using the Vultr Customer Portal, API, or CLI.
Send a GET
request to the List Instances endpoint and note your target instance's ID.
$ curl "https://api.vultr.com/v2/instances" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a POST
request to the Instance Bandwidth endpoint to monitor the instance's bandwidth usage statistics.
$ curl "https://api.vultr.com/v2/instances/{instance-id}/bandwidth" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all available instances and note your target instance's ID.
$ vultr-cli instance list
Monitor the instance's bandwidth usage statistics.
$ vultr-cli instance bandwidth <instance-id>
No comments yet.