Azure Monitor

Description

This Azure Monitor destination configures an exporter to send telemetry data (logs, metrics, traces) to Azure Monitor for ingestion.

Supported Types

Metrics
Logs
Traces
Bindplane Collector

v1.36.0+

Configuration

Field
Description

Choose Telemetry Type

The telemetry type to apply this processor to (Logs, Metrics, Traces).

Connection String

The connection string to authenticate with Azure Monitor.

Span Events Enabled

Whether to send span events as part of telemetry data (relevant for Traces).

Max Batch Size

The maximum number of telemetry items sent in a batch.

Max Batch Interval

The maximum interval in seconds before a batch is sent.

This destination supports the following retry and queuing settings:

Sending Queue
Persistent Queue
Retry on Failure

Example Configuration

For a basic configuration, specify the telemetry types, connection string, and optionally, the span events setting for traces.

Web Interface

Bindplane docs - Azure Monitor - image 1

Standalone Destination

apiVersion: bindplane.observiq.com/v1
kind: Destination
metadata:
  id: azure_monitor
  name: azure_monitor
spec:
  type: azure_monitor
  parameters:
    - name: telemetry
      value: ['Logs', 'Metrics', 'Traces']
    - name: connection_string
      value: 'your_connection_string'
    - name: span_events_enabled
      value: true
    - name: max_batch_size
      value: 500
    - name: max_batch_interval
      value: 10

Last updated

Was this helpful?