Getting Started
Configuring Destination Fields
✅ Traces
✅ Metrics
✅ Logs
- 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.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Lumigo and follow the on-screen instructions
Using Kubernetes manifests
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
Apply the YAML using kubectlkubectl apply -f lumigo.yaml