Getting Started

Creating Account
Go to the 🔗 Cloud Console > Sign Up

Setting Up
Go to ⚙️ > Deployments and click Start using VictoriaMetrics Cloud

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

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

Configuring Destination Fields

  • 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
1

Use the Odigos CLI to access the UI

odigos ui
2

Click on Add Destination, select VictoriaMetrics Cloud and follow the on-screen instructions

Using Kubernetes manifests
1

Save the YAML below to a file (e.g. victoriametricscloud.yaml)

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
2

Apply the YAML using kubectl

kubectl apply -f victoriametricscloud.yaml