Troubleshoot Your Monitoring Setup
On this page
Dashboards Stop Displaying Data
For those clusters running SingleStore v8.
-
After the cluster has been upgraded or restarted
-
After one or more hosts in the cluster have been rebooted
-
While the monitoring pipelines are still running
You may resolve this issue by using either of the following methods.
Method 1
-
Upgrade the cluster to one of the following SingleStore versions.
-
For clusters running SingleStore v8.
0, upgrade to v8. 0. 34 or later -
For clusters running SingleStore v8.
1, upgrade to v8. 1. 49 or later -
For clusters running SingleStore v8.
5, upgrade to v8. 5. 28 or later
-
-
Run the following SQL statements after upgrading the cluster.
ALTER PIPELINE metrics.metrics SET OFFSETS EARLIEST;ALTER PIPELINE metrics.blobs SET OFFSETS EARLIEST;ALTER PIPELINE metrics.event-traces SET OFFSETS EARLIEST;
Method 2
-
Set
MAX_
for the monitoring pipelines to a large value, such asRETRIES_ PER_ BATCH_ PARTITION 1000000
, via the following SQL statements.ALTER PIPELINE metrics.metrics SET MAX_RETRIES_PER_BATCH_PARTITION 1000000;ALTER PIPELINE metrics.blobs SET MAX_RETRIES_PER_BATCH_PARTITION 1000000;ALTER PIPELINE metrics.event-traces SET MAX_RETRIES_PER_BATCH_PARTITION 1000000; -
Run the following SQL statements.
ALTER PIPELINE metrics.metrics SET OFFSETS EARLIEST;ALTER PIPELINE metrics.blobs SET OFFSETS EARLIEST;ALTER PIPELINE metrics.event-traces SET OFFSETS EARLIEST;
Pipelines
Check the Monitoring Tables for Data
-
Connect to the database.
-
Run the following SQL.
The default database name is metrics
.If your database name is different from the default name, replace metrics
with your database name.USE metrics;SELECT * FROM metrics LIMIT 10;Optional, run
SELECT * FROM
on all of the monitoring tables.If these queries return an empty set, review the pipelines error tables using the next step.
-
Review the monitoring pipelines.
SHOW PIPELINES; -
If a monitoring pipeline (with a name resembling
*_
andmetrics *_
) is in a state other thanblobs running
, start the pipeline.START PIPELINE <pipeline-name>; -
Check the
information_
table for errors.schema. pipelines_ errors SELECT * FROM information_schema.pipelines_errors;
Resolve Pipeline Errors
If you receive an Cannot extract data for the pipeline error
in the pipelines_
, perform the following steps.
-
Confirm that port
9104
is accessible from all hosts in the cluster.This is the default port used for monitoring. To test this, run the following command at the Linux command line and review the output. curl http://<endpoint>:9104/cluster-metricsFor example:
curl http://192.168.1.100:9104/cluster-metrics -
If the hostname of the Master Aggregator is
localhost
, and a pipeline was created usinglocalhost
, use the following SQL commands to recreate the pipeline with the Master Aggregator host’s IP addresses.For example: metrics
pipeline:create or replace pipeline `metrics` as load data prometheus_exporter"http://<host-ip-address>:9104/cluster-metrics"config '{"is_memsql_internal":true}'into procedure `load_metrics` format json;start pipeline if not running metrics;blobs
pipeline:create or replace pipeline `blobs` as load data prometheus_exporter"http://<host-ip-address>:9104/samples"config '{"is_memsql_internal":true, "download_type":"samples"}'into procedure `load_blobs` format json;start pipeline if not running blobs;
Last modified: August 6, 2025