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

# VictoriaMetrics Cloud

> Configuring the VictoriaMetrics Cloud backend (Managed)

### Getting Started

<img src="https://d15jtxgb40qetw.cloudfront.net/victoriametrics.svg" alt="victoriametricscloud" className="not-prose h-20" />

**Creating Account**<br />
Go to the **[🔗 Cloud Console](https://console.victoriametrics.cloud) > Sign Up**

**Setting Up**<br />
Go to **⚙️ > Deployments** and click **Start using VictoriaMetrics Cloud**

**Obtaining Access Token**<br />
Go to **⚙️ > Deployments** and click **Overview**<br />
Then click **Access Tokens** and copy one of the keys

**Obtaining Endpoint**<br />
Go to **⚙️ > Integrations** and click **OpenTelemetry > Operator**<br />
Scroll to **Kubernetes commandline command** and copy the **endpoint**

### Configuring Destination Fields

<Accordion title="Supported Signals:">
  ❌ Traces
  ✅ Metrics
  ❌ Logs
  ❌ Profiles
</Accordion>

* **VICTORIA\_METRICS\_CLOUD\_ENDPOINT** `string` : OTLP HTTP Endpoint.
  * This field is required
* **VICTORIA\_METRICS\_CLOUD\_TOKEN** `string` : Access Token.
  * This field is required

### Adding Destination to Odigos

There are two primary methods for configuring destinations in Odigos:

##### **Using the UI**

<Steps>
  <Step>
    Use the [Odigos CLI](https://docs.odigos.io/cli/odigos_ui) to access the UI

    ```bash theme={null}
    odigos ui
    ```
  </Step>

  <Step>
    Click on `Add Destination`, select `VictoriaMetrics Cloud` and follow the on-screen instructions
  </Step>
</Steps>

##### **Using Kubernetes manifests**

<Steps>
  <Step>
    Save the YAML below to a file (e.g. `victoriametricscloud.yaml`)

    ```yaml theme={null}
    apiVersion: odigos.io/v1alpha1
    kind: Destination
    metadata:
      name: victoriametricscloud-example
      namespace: odigos-system
    spec:
      data:
        VICTORIA_METRICS_CLOUD_ENDPOINT: <OTLP HTTP Endpoint>
      destinationName: victoriametricscloud
      secretRef:
        name: victoriametricscloud-secret
      signals:
      - METRICS
      type: victoriametricscloud

    ---

    apiVersion: v1
    data:
      VICTORIA_METRICS_CLOUD_TOKEN: <Base64 Access Token>
    kind: Secret
    metadata:
      name: victoriametricscloud-secret
      namespace: odigos-system
    type: Opaque
    ```
  </Step>

  <Step>
    Apply the YAML using `kubectl`

    ```bash theme={null}
    kubectl apply -f victoriametricscloud.yaml
    ```
  </Step>
</Steps>
