Skip to content

Commit

Permalink
[installation-telemetry] Improve language around multiple telemetry o…
Browse files Browse the repository at this point in the history
…ptions
  • Loading branch information
adrienthebo authored and roboquat committed Jun 24, 2022
1 parent 55a5d7a commit d00cebd
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions components/dashboard/src/admin/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,21 @@ export default function Settings() {
subtitle="Configure settings for your Gitpod cluster."
>
<h3>Usage Statistics</h3>
<p className="text-base text-gray-500 pb-4 max-w-2xl">
We collect usage telemetry to gain insights on how you use your Gitpod instance, so we can provide a
better overall experience.
</p>
<p>
<a className="gp-link" href="https://www.gitpod.io/privacy">
Read our Privacy Policy
</a>
</p>
<CheckBox
title="Enable Service Ping"
title="Enable usage telemetry"
desc={
<span>
The following usage data is sent to provide insights on how you use your Gitpod instance, so
we can provide a better overall experience.{" "}
<a className="gp-link" href="https://www.gitpod.io/privacy">
Read our Privacy Policy
</a>
Enable usage telemetry on your Gitpod instance. A preview of your telemetry is available
below.
</span>
}
checked={adminSettings?.sendTelemetry ?? false}
Expand All @@ -68,10 +74,7 @@ export default function Settings() {
title="Include customer ID in telemetry"
desc={
<span>
An optional customer ID can be included with telemetry to provide better customer support.{" "}
<a className="gp-link" href="https://www.gitpod.io/privacy">
Read our Privacy Policy
</a>
Include an optional customer ID in usage telemetry to provide individualized support.
</span>
}
checked={adminSettings?.sendCustomerID ?? false}
Expand All @@ -82,6 +85,7 @@ export default function Settings() {
} as InstallationAdminSettings)
}
/>
<h3 className="mt-4">Telemetry preview</h3>
<InfoBox>
<pre>{JSON.stringify(telemetryData, null, 2)}</pre>
</InfoBox>
Expand Down

0 comments on commit d00cebd

Please sign in to comment.