Status | |
---|---|
Stability | alpha: traces, logs |
Distributions | contrib |
Issues | |
Code Owners | @atoulme, @emreyalvac |
The following settings can be optionally configured:
dsn
The Cassandra server DSN (Data Source Name), for example127.0.0.1
. reference: https://pkg.go.dev/github.com/gocql/gocqlport
(default = 9042): The Cassandra server porttimeout
(default = 10s): The Cassandra server connection timeoutkeyspace
(default = otel): The keyspace name.trace_table
(default = otel_spans): The table name for traces.replication
(default = class: SimpleStrategy, replication_factor: 1): The strategy of replication. https://cassandra.apache.org/doc/4.1/cassandra/architecture/dynamo.html#replication-strategycompression
(default = LZ4Compressor): https://cassandra.apache.org/doc/latest/cassandra/operating/compression.htmlauth
(default = username: "", password: "") Authorization for the Cassandra.
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"