Getting Started
Configuring Destination Fields
✅ Traces
✅ Metrics
✅ Logs
- SIGNOZ_URL
string : Collector Endpoint.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select SigNoz and follow the on-screen instructions
Using Kubernetes manifests
Save the YAML below to a file (e.g. signoz.yaml)apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
name: signoz-example
namespace: odigos-system
spec:
data:
SIGNOZ_URL: <Collector Endpoint>
destinationName: signoz
signals:
- TRACES
- METRICS
- LOGS
type: signoz
Apply the YAML using kubectlkubectl apply -f signoz.yaml