@@ -45,15 +45,21 @@ export default function Settings() {
45
45
subtitle = "Configure settings for your Gitpod cluster."
46
46
>
47
47
< 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 >
48
57
< CheckBox
49
- title = "Enable Service Ping "
58
+ title = "Enable usage telemetry "
50
59
desc = {
51
60
< 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.
57
63
</ span >
58
64
}
59
65
checked = { adminSettings ?. sendTelemetry ?? false }
@@ -68,10 +74,7 @@ export default function Settings() {
68
74
title = "Include customer ID in telemetry"
69
75
desc = {
70
76
< 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.
75
78
</ span >
76
79
}
77
80
checked = { adminSettings ?. sendCustomerID ?? false }
@@ -82,6 +85,7 @@ export default function Settings() {
82
85
} as InstallationAdminSettings )
83
86
}
84
87
/>
88
+ < h3 className = "mt-4" > Telemetry preview</ h3 >
85
89
< InfoBox >
86
90
< pre > { JSON . stringify ( telemetryData , null , 2 ) } </ pre >
87
91
</ InfoBox >
0 commit comments