A system that tracks server performance metrics and sends alerts when issues are detected.
Monitoring a Virtual Private Cloud (VPC) network enables the management and verification of the network information. You can view attached instances and subnet information by monitoring a VPC network.
Follow this guide to monitor VPC networks using the Vultr Customer Portal, API, or CLI.
Send a GET
request to the List VPCs endpoint to view all VPC networks in your Vultr account and note the target VPC network ID.
$ curl "https://api.vultr.com/v2/vpcs" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a GET
request to the Get a VPC endpoint to view information about the target VPC network.
$ curl "https://api.vultr.com/v2/vpcs/{vpc-id}" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all VPC networks in your Vultr account and note the target VPC network's ID.
$ vultr-cli vpc list
Get information about the VPC network.
$ vultr-cli vpc get <vpc-id>
No comments yet.