Skip to main content

Telemetry

Spice collects anonymous telemetry data to help improve the product. Telemetry is enabled by default but can be disabled at any time.

Data Collected

The following anonymous information is collected:

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"