Getting Started
Configuring Destination Fields
✅ Traces
✅ Metrics
❌ Logs
- TINGYUN_ENDPOINT
string : OTLP HTTP Endpoint.
- TINGYUN_LICENSE_KEY
string : License Key.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Tingyun 基调听云 and follow the on-screen instructions
Using Kubernetes manifests
Save the YAML below to a file (e.g. tingyun.yaml)apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
name: tingyun-example
namespace: odigos-system
spec:
data:
TINGYUN_ENDPOINT: <OTLP HTTP Endpoint>
destinationName: tingyun
secretRef:
name: tingyun-secret
signals:
- TRACES
- METRICS
type: tingyun
---
apiVersion: v1
data:
TINGYUN_LICENSE_KEY: <Base64 License Key>
kind: Secret
metadata:
name: tingyun-secret
namespace: odigos-system
type: Opaque
Apply the YAML using kubectlkubectl apply -f tingyun.yaml