Telemetry

Whenever you run a Garden command we collect anonymized telemetry and send it to Segment.io. It helps us understand how our users use Garden and aids our decision process when prioritizing new features, bug fixing, etc.

We put great effort in making sure we only collect completely anonymized data: We use random generated UUIDs for identifying users and we hash sensitive information using SHA-256.

Examples of events we collect

Below you can find examples of events we currently collect.

Identify

Sent the first time a Garden command is run on a machine.

{
  userId: '8fd322d7-bad3-4bbb-82cb-cebf3f804a37',
  traits: {
    gardenVersion: '0.10.16',
    platform: 'darwin',
    platformVersion: '18.7.0',
    isCI: false
  }
}

Run Command

Sent every time a Garden command is run.

Call API

Sent whenever the Dashboard makes an API call to Garden.

Updating your telemetry preferences

If you would like to update your analytics settings, please run:

You can also disable telemetry by setting the environment variable GARDEN_DISABLE_ANALYTICS:

Last updated

Was this helpful?