Getting Started

Configuring Destination Fields

  • LUMIGO_ENDPOINT string : Lumigo OTLP HTTP Endpoint.
    • This field is required and defaults to https://ga-otlp.lumigo-tracer-edge.golumigo.com
  • LUMIGO_TOKEN string : Lumigo Authorization 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 Lumigo and follow the on-screen instructions

Using Kubernetes manifests
1

Save the YAML below to a file (e.g. lumigo.yaml)

apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
  name: lumigo-example
  namespace: odigos-system
spec:
  data:
    LUMIGO_ENDPOINT: '<Lumigo OTLP HTTP Endpoint (default: https://ga-otlp.lumigo-tracer-edge.golumigo.com)>'
  destinationName: lumigo
  secretRef:
    name: lumigo-secret
  signals:
  - TRACES
  - METRICS
  - LOGS
  type: lumigo

---

apiVersion: v1
data:
  LUMIGO_TOKEN: <Base64 Lumigo Authorization Token>
kind: Secret
metadata:
  name: lumigo-secret
  namespace: odigos-system
type: Opaque
2

Apply the YAML using kubectl

kubectl apply -f lumigo.yaml