Getting Started

Obtaining Lightstep Access Token
Go to ⚙️ > Access Tokens and click Create New

Configuring Destination Fields

  • LIGHTSTEP_ACCESS_TOKEN string : Access 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 Lightstep and follow the on-screen instructions

Using Kubernetes manifests
1

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
2

Apply the YAML using kubectl

kubectl apply -f lightstep.yaml