Getting Started

Follow the following instructions to obtain a OTLP/HTTP Source URL.

Configuring Destination Fields

  • SUMOLOGIC_COLLECTION_URL string : Source URL.
    • 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 Sumo Logic and follow the on-screen instructions

Using Kubernetes manifests
1

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
2

Apply the YAML using kubectl

kubectl apply -f sumologic.yaml