@@ -36,7 +36,7 @@ export default function Settings() {
36
36
await getGitpodService ( ) . server . adminUpdateSettings ( value ) ;
37
37
setAdminSettings ( value ) ;
38
38
39
- // Telemetry preferences have been reloaded, update
39
+ // Update telemetry presented to the user upon settings change.
40
40
const data = await getGitpodService ( ) . server . adminGetTelemetryData ( ) ;
41
41
setTelemetryData ( data ) ;
42
42
} ;
@@ -49,15 +49,19 @@ export default function Settings() {
49
49
subtitle = "Configure settings for your Gitpod cluster."
50
50
>
51
51
< 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 >
52
59
< CheckBox
53
- title = "Enable Service Ping "
60
+ title = "Enable usage telemetry "
54
61
desc = {
55
62
< 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.
61
65
</ span >
62
66
}
63
67
checked = { adminSettings ?. sendTelemetry ?? false }
@@ -72,10 +76,7 @@ export default function Settings() {
72
76
title = "Include customer ID in telemetry"
73
77
desc = {
74
78
< 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.
79
80
</ span >
80
81
}
81
82
checked = { adminSettings ?. sendCustomerID ?? false }
0 commit comments