For the complete documentation index, see llms.txt. This page is also available as Markdown.

Azure Blob Storage

The Azure Blob Storage source reads telemetry stored as blobs in an Azure Storage account. Bindplane subscribes to an Azure Event Hub that fires on Blob Create events, then reads each newly created blob and parses it as telemetry. Logs and traces stored in the configured containers are ingested as they arrive.

Supported Telemetry Types

Platform
Metrics
Logs
Traces

Linux

Windows

macOS

Prerequisites

  • An Azure Storage account, with the blobs to ingest stored in OTLP JSON format. Blobs in any other format cannot be parsed by the receiver.

  • The Azure Storage account connection string (see Configure a connection string).

  • An Azure Event Hub that receives Blob Create events from the storage account, and its endpoint connection string (see Set up the Event Hub).

  • A separate container for each telemetry type you collect (for example, logs and traces).

Configuration

Bindplane docs - Azure Blob Storage - image 1

General

Parameter
Type
Default
Description

Choose Telemetry Type

Telemetry Selector

["Logs", "Traces"]

Which telemetry types to collect. Valid values are Logs and Traces.

Connection String

String

The connection string to the Azure Storage account. Required. This value is sensitive.

Event Hub Endpoint

String

The Azure Event Hub endpoint that triggers on the Blob Create events. Required. This value is sensitive.

Logs

Parameter
Type
Default
Description

Container

String

logs

Name of the Azure Storage container where logs are stored. Required when Logs telemetry is selected.

Traces

Parameter
Type
Default
Description

Container

String

traces

Name of the Azure Storage container where traces are stored. Required when Traces telemetry is selected.

Set up the Event Hub

The source learns about new blobs through Event Hub notifications rather than polling the storage account. Create a subscription so that Blob Create events are delivered to an Event Hub:

  1. In the Azure portal, create (or reuse) an Event Hubs namespace and an Event Hub within it.

  2. On the storage account, open Events and add an Event Subscription that filters for the Microsoft.Storage.BlobCreated event type.

  3. Set the endpoint type to Event Hubs and point it at the Event Hub created above.

  4. Create a Shared Access Policy on the Event Hub (or its namespace) and copy the connection string. This is the value you supply as event_hub_endpoint.

For more detail on the event schema and delivery, see the Azure Blob Storage events documentation.

Example Configuration

Standalone Source

For a basic configuration, supply the storage account connection_string and the event_hub_endpoint. The example below uses placeholder credentials in the form Azure expects.

Configuration Tips

Blob format

  • Stored logs and traces must be in OTLP JSON format. The receiver cannot parse blobs written in any other format.

Containers and telemetry types

  • Use separate containers for logs and traces, then point logs_container and traces_container at them. The defaults are logs and traces.

  • Only the containers for the telemetry types you select under telemetry_types are read, so deselect a type if you are not storing it.

Troubleshooting

Symptom: The source is configured but no telemetry arrives. Solution: Confirm the Event Hub subscription is delivering Microsoft.Storage.BlobCreated events. The source reacts to notifications, so it will not read existing blobs that were created before the subscription was in place. Verify the event_hub_endpoint connection string is correct and that its access policy grants listen permission.

Symptom: Blobs are created but fail to parse, or records are dropped. Solution: Ensure blobs are written in OTLP JSON format. Other formats cannot be parsed by the receiver.

Symptom: Data loss after read errors on older collector versions. Solution: Upgrade to at least BDOT 1.99.0. Earlier versions deleted each blob immediately after reading, before confirming it was successfully sent downstream.

Last updated

Was this helpful?