Skip to main content
Enterprise Support Available
Spice.ai Enterprise provides full support for up to 3 years from the release date.
Version: v1.6

Telemetry

Spice collects anonymous telemetry data, which is used to help understand how to improve the product in future versions.

Data collected includes:

Data collected is sent to https://telemetry.spiceai.org once every hour.

Disabling Telemetry

Telemetry can be disabled in one of three ways:

  1. Running the Spice runtime with the CLI flag --telemetry-enabled false:
spice run -- --telemetry-enabled false

or

spiced --telemetry-enabled false
  1. Add the following configuration to the Spicepod configuration file (spicepod.yaml):
runtime:
telemetry:
enabled: false
  1. Compile the Spice runtime without the anonymous_telemetry default feature:
cargo build --release --no-default-features --features "<other_default_features>"

i.e.

cargo build --release --no-default-features --features "duckdb,postgres,sqlite,mysql,flightsql,delta_lake,databricks,dremio,clickhouse,spark,snowflake,ftp,debezium"