Getting Started
Follow the following instructions to obtain a OTLP/HTTP Source URL.
Configuring Destination Fields
✅ Traces
✅ Metrics
✅ Logs
- SUMOLOGIC_COLLECTION_URL
string : Source URL.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Sumo Logic and follow the on-screen instructions
Using Kubernetes manifests
Save the YAML below to a file (e.g. sumologic.yaml)apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
name: sumologic-example
namespace: odigos-system
spec:
data: {}
destinationName: sumologic
secretRef:
name: sumologic-secret
signals:
- TRACES
- METRICS
- LOGS
type: sumologic
---
apiVersion: v1
data:
SUMOLOGIC_COLLECTION_URL: <Base64 Source URL>
kind: Secret
metadata:
name: sumologic-secret
namespace: odigos-system
type: Opaque
Apply the YAML using kubectlkubectl apply -f sumologic.yaml