Skip to content

Commit 536cdbd

Browse files
committed
[installation-telemetry] Improve language around multiple telemetry options
1 parent 2b1c7e1 commit 536cdbd

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

components/dashboard/src/admin/Settings.tsx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function Settings() {
3636
await getGitpodService().server.adminUpdateSettings(value);
3737
setAdminSettings(value);
3838

39-
// Telemetry preferences have been reloaded, update
39+
// Update telemetry presented to the user upon settings change.
4040
const data = await getGitpodService().server.adminGetTelemetryData();
4141
setTelemetryData(data);
4242
};
@@ -49,15 +49,19 @@ export default function Settings() {
4949
subtitle="Configure settings for your Gitpod cluster."
5050
>
5151
<h3>Usage Statistics</h3>
52+
<p className="text-base text-gray-500 pb-4 max-w-2xl">
53+
We collect usage telemetry to gain insights on how you use your Gitpod instance, so we can provide a
54+
better overall experience.{" "}
55+
<a className="gp-link" href="https://www.gitpod.io/privacy">
56+
Read our Privacy Policy
57+
</a>
58+
</p>
5259
<CheckBox
53-
title="Enable Service Ping"
60+
title="Enable usage telemetry"
5461
desc={
5562
<span>
56-
The following usage data is sent to provide insights on how you use your Gitpod instance, so
57-
we can provide a better overall experience.{" "}
58-
<a className="gp-link" href="https://www.gitpod.io/privacy">
59-
Read our Privacy Policy
60-
</a>
63+
Enable usage telemetry on your Gitpod instance. A preview of your telemetry is available
64+
below.
6165
</span>
6266
}
6367
checked={adminSettings?.sendTelemetry ?? false}
@@ -72,10 +76,7 @@ export default function Settings() {
7276
title="Include customer ID in telemetry"
7377
desc={
7478
<span>
75-
An optional customer ID can be included with telemetry to provide better customer support.{" "}
76-
<a className="gp-link" href="https://www.gitpod.io/privacy">
77-
Read our Privacy Policy
78-
</a>
79+
Include an optional customer ID in usage telemetry to provide individualized support.
7980
</span>
8081
}
8182
checked={adminSettings?.sendCustomerID ?? false}

0 commit comments

Comments
 (0)