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
✅ Traces
❌ Metrics
✅ Logs
- AZURE_BLOB_ACCOUNT_NAME
string : Account Name.
- AZURE_BLOB_CONTAINER_NAME
string : Container Name.
Adding Destination to Odigos
There are two primary methods for configuring destinations in Odigos:
Using the UI
Click on Add Destination, select Azure Blob Storage and follow the on-screen instructions
Using Kubernetes manifests
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
Apply the YAML using kubectlkubectl apply -f azureblob.yaml