> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nebius.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to use Grafana® to view metrics provided by Nebius AI Cloud

To view visualized metrics in Grafana dashboards, connect Grafana to Observability Metrics and query the data by using [PromQL](https://prometheus.io/docs/prometheus/latest/querying/basics/).

<Note>
  This method only works for metrics provided by Nebius AI Cloud. To visualize your own metrics in Grafana, see [Connect Grafana to view your own metrics](../metrics/ingest#connect-grafana-to-view-your-own-metrics).
</Note>

## Prerequisites

1. [Install](/cli/install) and [configure](/cli/configure) Nebius AI Cloud CLI.

2. If you don’t have a service account for observability services, [create one](/iam/service-accounts/manage).

3. Make sure that the service account is in a [group](/iam/authorization/groups) that has at least the `viewer` role within your tenant; for example, the default `viewers` group. You can check this in the [Administration → IAM](https://console.nebius.com/iam/service-accounts) section of the web console.

   If the service account is not in the required group, click <Icon icon="https://mintcdn.com/nebius-ai-cloud/1Ha0sWR6e1mnIaHS/_assets/button-vellipsis.svg?fit=max&auto=format&n=1Ha0sWR6e1mnIaHS&q=85&s=e80b8e57c43bfd117679262e6a1334ad" width="12" height="24" data-path="_assets/button-vellipsis.svg" /> → **Add to group**, and select `viewers`.

4. Issue a [static key](/iam/authorization/static-keys) for the service account using the following command:

   ```bash theme={null}
   nebius iam static-key issue \
     --name <name_for_the_key> \
     --account-service-account-id <service_account_ID> \
     --service=OBSERVABILITY
   ```

   Copy the value of the static key from the `token` parameter of the response. You will need it on later steps.

## How to connect Grafana data source

Use one of these ways:

<Tabs>
  <Tab title={`Install Nebius application`}>
    Install the [Grafana solution by Nebius](https://console.nebius.com/applications/overview/nebius/grafana-solution-by-nebius), an application for Managed Service for Kubernetes®. The application is configured to receive metrics.
  </Tab>

  <Tab title={`Connect a data source in Grafana`}>
    1. Make sure that you have Grafana available, in any of these ways:
       * [Install Grafana on your local machine](https://grafana.com/docs/grafana/latest/setup-grafana/installation/).
       * [Create an account in Grafana Cloud](https://grafana.com/auth/sign-up/create-user).

    2. Open Grafana in your browser.

    3. In the side menu, select **Connections** → **Data sources**.

    4. In the top right corner, click **Add new data source**.

    5. Select **Prometheus**.

    6. In the Prometheus configuration, enter the following settings:

       * **Connection** → **Prometheus server URL**: `https://read.monitoring.api.nebius.cloud/projects/<project_ID>/service-provider/prometheus`.

         In the URL, specify your [project ID](/iam/manage-projects#how-to-get-a-project-id).

       * **Authentication** → **HTTP headers**: click **Add header** and enter `Authorization` and the value of the static key that you [got earlier](#prerequisites).

    7. Click **Save and test**. If Prometheus is connected successfully, you should see the "Successfully queried the Prometheus API" message.
  </Tab>
</Tabs>

## How to explore and manage metrics

Explore the metrics: construct [PromQL queries](https://prometheus.io/docs/prometheus/latest/querying/basics/) by using **Builder** or create dashboards to visualize metrics.

For example, if you are looking to optimize costs, find virtual machines with consistently underutilized CPUs. Enter the following query:

```
{"system.cpu.load_average.15m", instance_id=~"computeinstance-.*"}
```

***

*The Grafana Labs Marks are trademarks of Grafana Labs, and are used with Grafana Labs' permission. We are not affiliated with, endorsed or sponsored by Grafana Labs or its affiliates.*
