Skip to content

Commit 0fcb0b9

Browse files
committed
[installation-telemetry] Improve language around multiple telemetry options
1 parent 44f99f0 commit 0fcb0b9

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

components/dashboard/src/admin/Settings.tsx

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,21 @@ export default function Settings() {
4545
subtitle="Configure settings for your Gitpod cluster."
4646
>
4747
<h3>Usage Statistics</h3>
48+
<p className="text-base text-gray-500 pb-4 max-w-2xl">
49+
We collect usage telemetry to gain insights on how you use your Gitpod instance, so we can provide a
50+
better overall experience.
51+
</p>
52+
<p>
53+
<a className="gp-link" href="https://www.gitpod.io/privacy">
54+
Read our Privacy Policy
55+
</a>
56+
</p>
4857
<CheckBox
49-
title="Enable Service Ping"
58+
title="Enable usage telemetry"
5059
desc={
5160
<span>
52-
The following usage data is sent to provide insights on how you use your Gitpod instance, so
53-
we can provide a better overall experience.{" "}
54-
<a className="gp-link" href="https://www.gitpod.io/privacy">
55-
Read our Privacy Policy
56-
</a>
61+
Enable usage telemetry on your Gitpod instance. A preview of your telemetry is available
62+
below.
5763
</span>
5864
}
5965
checked={adminSettings?.sendTelemetry ?? false}
@@ -68,10 +74,7 @@ export default function Settings() {
6874
title="Include customer ID in telemetry"
6975
desc={
7076
<span>
71-
An optional customer ID can be included with telemetry to provide better customer support.{" "}
72-
<a className="gp-link" href="https://www.gitpod.io/privacy">
73-
Read our Privacy Policy
74-
</a>
77+
Include an optional customer ID in usage telemetry to provide individualized support.
7578
</span>
7679
}
7780
checked={adminSettings?.sendCustomerID ?? false}
@@ -82,6 +85,7 @@ export default function Settings() {
8285
} as InstallationAdminSettings)
8386
}
8487
/>
88+
<h3 className="mt-4">Telemetry preview</h3>
8589
<InfoBox>
8690
<pre>{JSON.stringify(telemetryData, null, 2)}</pre>
8791
</InfoBox>

0 commit comments

Comments
 (0)