Getting Started
Obtaining Lightstep Access Token
Go to ⚙️ > Access Tokens and click Create New
Configuring Destination Fields
✅ Traces
❌ Metrics
❌ Logs
- LIGHTSTEP_ACCESS_TOKEN
string : Access Token.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Lightstep and follow the on-screen instructions
Using Kubernetes manifests
Save the YAML below to a file (e.g. lightstep.yaml)apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
name: lightstep-example
namespace: odigos-system
spec:
data: {}
destinationName: lightstep
secretRef:
name: lightstep-secret
signals:
- TRACES
type: lightstep
---
apiVersion: v1
data:
LIGHTSTEP_ACCESS_TOKEN: <Base64 Access Token>
kind: Secret
metadata:
name: lightstep-secret
namespace: odigos-system
type: Opaque
Apply the YAML using kubectlkubectl apply -f lightstep.yaml