Vultr Managed Apache Kafka® enables users to view key metrics for their database, including General Usage, vCPU Usage, Disk Operations, and Network activity. This clear and organized interface allows customers to track their resource consumption over time, helping them optimize performance and manage costs effectively. Users can easily access detailed usage statistics to make informed decisions about scaling and resource allocation.
Follow this guide to manage usage for Vultr Managed Apache Kafka® with Vultr Customer Portal, API, and CLI.
Navigate to Products and select Databases.
Select the target database.
Navigate to Usage Graphs.
View the General Usage, vCPU Usage, Disk Operations, and Network.
List all the databases by sending a GET
request to the List Managed Databases endpoint and note the target database's ID.
$ curl "https://api.vultr.com/v2/databases" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a GET
request to the Get Database Usage Information endpoint to get the overall usage information of the target database.
$ curl "https://api.vultr.com/v2/databases/{database-id}/usage" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all databases and note the target database's ID.
$ vultr-cli database list --summarize
Get the usage information of the target database.
$ vultr-cli database usage get <database-id>