Getting Started

Odigos exports data to Azure Blob Storage in OTLP format. Data can be exported either in JSON format or in binary format (protobuf).

Configuring Destination Fields

  • AZURE_BLOB_ACCOUNT_NAME string : Account Name.
    • This field is required
  • AZURE_BLOB_CONTAINER_NAME string : Container Name.
    • 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 Azure Blob Storage and follow the on-screen instructions

Using Kubernetes manifests
1

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

apiVersion: odigos.io/v1alpha1
kind: Destination
metadata:
  name: azureblob-example
  namespace: odigos-system
spec:
  data:
    AZURE_BLOB_ACCOUNT_NAME: <Account Name>
    AZURE_BLOB_CONTAINER_NAME: <Container Name>
  destinationName: azureblob
  signals:
  - TRACES
  - LOGS
  type: azureblob
2

Apply the YAML using kubectl

kubectl apply -f azureblob.yaml