Skip to main content

Cassandra Exporter

Status Available in: contrib Maintainers: @atoulme, @emreyalvac Source: opentelemetry-collector-contrib

Supported Telemetry

Logs Traces

Overview

Configuration options

The following settings can be optionally configured:

Example

exporters:
  cassandra:
    dsn: 127.0.0.1
    port: 9042
    timeout: 10s
    keyspace: "otel"
    trace_table: "otel_spans"
    replication:
      class: "SimpleStrategy"
      replication_factor: 1
    compression:
      algorithm: "ZstdCompressor"
    auth:
      username: "your-username"
      password: "your-password"

Configuration

Example Configuration

cassandra:
  dsn: 127.0.0.1
  keyspace: "otel"
  trace_table: "otel_spans"
  timeout: 10s
  logs_table: "otel_logs"
  replication:
    class: "SimpleStrategy"
    replication_factor: 1
  compression:
    algorithm: "LZ4Compressor"

Last generated: 2026-04-13