Getting Started
Configuring Destination Fields
✅ Traces
❌ Metrics
❌ Logs
- ALIBABA_ENDPOINT
string : OTLP gRPC Endpoint. The format is host:port, host is required, port is required. Do not add the prefix http://.
- ALIBABA_TOKEN
string : Token.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Alibaba Cloud and follow the on-screen instructions
Using Kubernetes manifests
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
Apply the YAML using kubectlkubectl apply -f alibabacloud.yaml