---
title: Monitor
url: https://docs.vultr.com/products/compute/serverless-inference/management/monitor
description: A system for tracking server performance metrics, resource utilization, and setting up alerts for your Vultr infrastructure.
publish_date: 2024-09-23T20:20:48.885295Z
last_updated: 2026-05-26T19:10:30.529457Z
---

# How to Monitor Vultr Serverless Inference

Monitoring the Vultr Serverless Inference subscription is essential for maintaining the performance and cost-efficiency of your AI deployments. By tracking the usage of various AI workloads, such as "Prompt, Chat, Text-to-Speech" and "RAG Chat Completion," you can gain valuable insights into resource consumption, optimize performance, and prevent potential bottlenecks. This proactive monitoring ensures that your AI applications run smoothly, delivering consistent and reliable results while keeping operational costs under control.

Follow this guide to monitor the usage of Serverless Inference on your Vultr account using the Vultr Console, API, or CLI.

=== "Vultr Console"

    1. Navigate to **Products**, click **Serverless**, and then click **Inference**.

    1. Click your target inference subscription to open its management page.

    1. Open the **Usage** page.

    1. View the usage statistics for all inference endpoints.

=== "Vultr API"

    1. Send a `GET` request to the [**List Serverless Inference** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/list-inference) and note the target inference subscription's ID.

        ```console
        $ curl "https://api.vultr.com/v2/inference" \
            -X GET \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```

    1. Send a `GET` request to the [**Serverless Inference Usage Information** endpoint](https://www.vultr.com/api/#tag/serverless-inference/operation/get-inference-usage) to retrieve usage details about all inference endpoints.

        ```console
        $ curl "https://api.vultr.com/v2/inference/{inference-id}/usage" \
            -X GET \
            -H "Authorization: Bearer ${VULTR_API_KEY}"
        ```

=== "Vultr CLI"

    1. List all the inference subscriptions available and note the target inference subscription's ID.

        ```console
        $ vultr-cli inference list
        ```

    1. Get the target inference subscription's usage.

        ```console
        $ vultr-cli inference usage get <inference-id>
        ```
