DataStax driver metrics

DataStax drivers expose metrics through language-specific libraries and APIs. To troubleshoot performance issues, DataStax recommends collecting most driver metrics in Prometheus.

Why do I need driver metrics?

Performance monitoring is an important aspect of the software development lifecycle. Metrics-based alerts and application monitoring frameworks help operators identify, track, and resolve performance issues quickly.

For example, if you manage a DataStax Enterprise (DSE) deployment with DSE OpsCenter, your operators can receive alerts when there are server-side latency spikes. If you also implement application monitoring, your operators can track latency spikes to individual components, such as single driver instances. Then, they can evaluate how to fix the latency problem in that component without wasting time investigating other parts of the application.

Enable metrics collection in DataStax drivers

C/C++ driver metrics

The C/C++ driver tracks its metrics through the internal CassMetrics object. This object contains information about requests (latency and throughput), stats (connections), and errors (timeouts). For more information, see C/C++ driver metrics.

C# driver metrics

C# driver metrics are disabled by default. To enable metrics, use the Builder.WithMetrics() method when creating the session.

To export metrics to a monitoring tool, use the App.Metrics Provider extension package.

For speculative execution, use the node-level metric speculative-executions.

For more information, including a list of metrics, see C# driver metrics.

GoCQL driver metrics
Java driver metrics

Java driver metrics are disabled by default. To enable metrics, use advanced.metrics to select your metrics library and the metrics that you want to monitor.

Depending on your driver version, the Java driver can report metrics to various metrics libraries, including built-in support for popular metrics libraries.

Example: Select metrics library
// create any type of registry depending on used library
Object registry = new SimpleMeterRegistry();
CqlSession session = CqlSession.builder()
    // ...
    .withMetricRegistry(registry)
    .build()

You must specify each metric that you want to capture. For a full list of available metrics, see reference.conf.

Example: Enable specific metrics
datastax-java-driver {
  advanced.metrics {
    session {
      enabled = [
        bytes-sent,
        bytes-received,
        connected-nodes,
        cql-requests,
        cql-client-timeouts,
      ]
      cql-requests {
          highest-latency = 3 seconds
          lowest-latency = 1 millisecond
          significant-digits = 3
          refresh-interval = 5 minutes
      }
    }
    node {
      enabled = [
        pool.open-connections,
        pool.available-streams,
        pool.in-flight,
        cql-messages,
        errors.request.unsent,
        errors.request.aborted,
        errors.request.write-timeouts,
        errors.request.read-timeouts,
        errors.request.unavailables,
        errors.request.others,
        retries.total,
        retries.aborted,
        retries.read-timeout,
        retries.write-timeout,
        retries.unavailable,
        retries.other,
        ignores.total,
        ignores.aborted,
        ignores.read-timeout,
        ignores.write-timeout,
        ignores.unavailable,
        ignores.other,
        errors.connection.init
    ]
    cql-messages {
      highest-latency = 3 seconds
      lowest-latency = 1 millisecond
      significant-digits = 3
      refresh-interval = 5 minutes
    }
    expire-after = 1 hour
    }
  }
}

All Java driver versions support using an external metric registry.

Node.js driver metrics

The Node.js driver’s metrics module exposes internal driver metrics in the form of counters:

  • ClientMetrics: An interface that can be used by metrics libraries, service providers, and the community to implement support for existing toolkits like DataDog, Prometheus, and Measured.

  • DefaultMetrics: A default implementation of ClientMetrics that exposes driver metrics as Node.js events, and then push them to your application metrics toolkit.

Python driver metrics

Python driver metrics are disabled by default.

The Python driver offers optional metrics support that requires the scales library.

To enable metrics support, install the scales dependency, and then create the Cluster object with metrics_enabled set to True. To access the reported statistics, use a simple HTTP server to spot check the metrics.

Alternatively, you can use GraphitePusher to collect and report metrics to Graphite.

Was this helpful?

Give Feedback

How can we improve the documentation?

© 2025 DataStax | Privacy policy | Terms of use | Manage Privacy Choices

Apache, Apache Cassandra, Cassandra, Apache Tomcat, Tomcat, Apache Lucene, Apache Solr, Apache Hadoop, Hadoop, Apache Pulsar, Pulsar, Apache Spark, Spark, Apache TinkerPop, TinkerPop, Apache Kafka and Kafka are either registered trademarks or trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries. Kubernetes is the registered trademark of the Linux Foundation.

General Inquiries: +1 (650) 389-6000, info@datastax.com