Storage
Node storage capacity
A CockroachDB node will not able to operate if there is no free disk space on a CockroachDB volume. MetricRule
Set alerts for each node:
WARNING:
capacity.available/capacity is less than 0.30 for 24 hours
CRITICAL:
capacity.available/capacity is less than 0.10 for 1 hour
Action
- Refer to .
- Increase the size of CockroachDB node storage capacity. CockroachDB storage volumes should not be utilized more than 60% (40% free space).
- In a “disk full” situation, you may be able to get a node “unstuck” by removing the .
SQL
Node not executing SQL
Send an alert when a node is not executing SQL despite having connections.sql.conns shows the number of connections as well as the distribution, or balancing, of connections across cluster nodes. An imbalance can lead to nodes becoming overloaded.
Metric
sql.query.count
Rule
Set alerts for each node:
WARNING:
sql.conns greater than 0 while sql.query.count equals 0
Action
- Refer to .
SQL query failure
Send an alert when the query failure count exceeds a user-determined threshold based on their application’s SLA. MetricRule
WARNING:
sql.failure.count is greater than a threshold (based on the user’s application SLA)
Action
- Use the to find failed executions with their error code to troubleshoot or use application-level logs, if instrumented, to determine the cause of error.
SQL queries experiencing high latency
Send an alert when the query latency exceeds a user-determined threshold based on their application’s SLA. MetricRule
WARNING: (p99 or p90 of
sql.service.latency plus average of sql.conn.latency) is greater than a threshold (based on the user’s application SLA)
Action
- Apply the time range of the alert to the to investigate. Use the P90 Latency and P99 latency columns to correlate with this alert.
Changefeeds
During , restart following node restarts. Mute changefeed alerts described in the following sections during routine maintenance procedures to avoid unnecessary distractions.Changefeed failure
Changefeeds can suffer permanent failures (that the will not try to restart). Any increase in this metric counter should prompt investigative action. MetricRule
CRITICAL: If
changefeed.failures is greater than 0
Action
-
If the alert is triggered during cluster maintenance, mute it. Otherwise start investigation with the following query:
-
If the cluster is not undergoing maintenance, check the health of endpoints. If the sink is , check for sink connection errors such as
ERROR: connecting to kafka: path.to.cluster:port: kafka: client has run out of available brokers to talk to (Is your cluster reachable?).
Frequent changefeed restarts
Changefeeds automatically restart in case of transient errors. However too many restarts outside of a routine maintenance procedure may be due to a systemic condition and should be investigated. MetricRule
WARNING: If
changefeed.error_retries is greater than 50 for more than 15 minutes
Action
- Follow the action for a changefeed failure.
Changefeed falling behind
Changefeed has fallen behind. This is determined by the end-to-end lag between a committed change and that change applied at the destination. This can be due to cluster capacity or changefeed sink availability. MetricRule
WARNING:
changefeed.commit_latency is greater than 10 minutes
CRITICAL:
changefeed.commit_latency is greater than 15 minutes
Action
-
In the DB Console, navigate to Metrics, for the cluster and check the maximum values on the . Alternatively, individual changefeed latency can be verified by using the following SQL query:
-
Copy the
job_idfor the changefeed job with highestchangefeed latencyand pause the job: -
Check the status of the pause request by running the query from step 1. If the job status is
pause-requested, check again in a few minutes. -
After the job is
paused, resume the job. - If the changefeed latency does not progress after these steps due to lack of cluster resources or availability of the changefeed sink, contact Support.
Changefeed has been paused a long time
Changefeed jobs should not be paused for a long time because . To protect against an operational error, this alert guards against an inadvertently forgotten pause. MetricRule
WARNING:
jobs.changefeed.currently_paused is greater than 0 for more than 15 minutes
CRITICAL:
jobs.changefeed.currently_paused is greater than 0 for more than 60 minutes
Action
-
Check the status of each changefeed using the following SQL query:
-
If all the changefeeds have status as
running, one or more changefeeds may have run into an error and recovered. In the DB Console, navigate to Metrics, for the cluster and check the . -
Resume paused changefeed(s) with the
job_idusing:
Changefeed experiencing high latency
Send an alert when the maximum latency of any running changefeed exceeds a specified threshold, which is less than the variable set in the cluster. This alert ensures that the changefeed progresses faster than the garbage collection TTL, preventing a changefeed’s protected timestamp from delaying garbage collection. MetricRule
WARNING: (current time minus
changefeed.checkpoint_progress) is greater than a threshold (that is less than gc.ttlseconds variable)
Action
- Refer to .

