Monitoring an instance provides information about performance and usage statistics. This enables you to keep track of your instance activity and usage ratio depending on the running services.
Follow this guide to monitor a Vultr Cloud GPU instance using the Vultr Customer Portal, API, or CLI.
Navigate to Products and click Compute.
Click your target Cloud GPU instance to open its management page.
View the instance usage summary within the Overview section.
Navigate to the Usage Graphs tab to monitor your instance usage statistics.
Monitor the instance bandwidth usage statistics within the Monthly Bandwidth section.
Monitor the instance performance statistics within the Server Monitors section.
Click the Range drop-down to select a specific timeframe and view the monitoring information within the following categories:
Send a GET
request to the List Instances endpoint and note the 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 instances in your Vultr account and note the target instance's ID.
$ vultr-cli instance list
Monitor the instance's bandwidth usage statistics.
$ vultr-cli instance bandwidth <instance-id>