Getting Started

Configuring Destination Fields

  • ALIBABA_ENDPOINT string : OTLP gRPC Endpoint. The format is host:port, host is required, port is required. Do not add the prefix http://.
    • This field is required
  • ALIBABA_TOKEN string : 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 Alibaba Cloud and follow the on-screen instructions

Using Kubernetes manifests
1

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

apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
  name: alibabacloud-example
  namespace: odigos-system
spec:
  data:
    ALIBABA_ENDPOINT: <OTLP gRPC Endpoint>
  destinationName: alibabacloud
  secretRef:
    name: alibabacloud-secret
  signals:
  - TRACES
  type: alibabacloud

---

apiVersion: v1
data:
  ALIBABA_TOKEN: <Base64 Token>
kind: Secret
metadata:
  name: alibabacloud-secret
  namespace: odigos-system
type: Opaque
2

Apply the YAML using kubectl

kubectl apply -f alibabacloud.yaml