Important
The SingleStore 9.1 release candidate (RC) is available now. It will be promoted to general availability (GA) soon and at that time it will be renamed to SingleStore 10.
In the interim, SingleStore 9.1 RC can be used to preview, evaluate, and provide feedback on the new and upcoming features in SingleStore 10, while SingleStore 9.0 is recommended for production workloads.
EXPORT TELEMETRY
On this page
The EXPORT TELEMETRY command writes usage telemetry data to a file.
This command generates the same usage telemetry data that is sent when the send_ engine variable is enabled, and is based off of the data in the usage_ information schema table.
Syntax
EXPORT TELEMETRY TO 'file name' FOR PROD|QA|DEV|SANDBOX [FORCE]Arguments
-
FORCEoption will overwrite the file if it already exists. -
FOR PROD|QA|DEV|SANDBOXspecifies the type of cluster the report is for.
Remarks
EXPORT TELEMETRY honors the secure_ engine variable which limits the directories to which SingleStore can write a file.
Example
Write usage telemetry data to a file called 'tel_
EXPORT TELEMETRY TO '/tmp/tel_dev_20240306' FOR DEV;
Query OK, 0 rows affected (0.00 sec)Last modified: