Skip to main content

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"