Getting Started

Odigos currently supports Standard (non-Autopilot) GKE clusters. Exporting into Google Cloud does not require credentials as the Kubernetes nodes are permissioned to access the Google Cloud Monitoring APIs by default.

Configuring Destination Fields

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 Google Cloud Monitoring and follow the on-screen instructions

Using Kubernetes manifests
1

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

apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
  name: googlecloud-example
  namespace: odigos-system
spec:
  data: {}
  destinationName: googlecloud
  signals:
  - TRACES
  - LOGS
  type: googlecloud
2

Apply the YAML using kubectl

kubectl apply -f googlecloud.yaml