We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff6b6f4 commit b7e4622Copy full SHA for b7e4622
components/installation-telemetry/cmd/send.go
@@ -57,7 +57,8 @@ var sendCmd = &cobra.Command{
57
Set("version", versionId).
58
Set("totalUsers", data.TotalUsers).
59
Set("totalWorkspaces", data.TotalWorkspaces).
60
- Set("totalInstances", data.TotalInstances),
+ Set("totalInstances", data.TotalInstances).
61
+ Set("licenseId", data.LicenseID),
62
}
63
64
client.Enqueue(telemetry)
components/installation-telemetry/pkg/server/installationAdmin.go
@@ -22,6 +22,7 @@ type Data struct {
22
TotalUsers int64 `json:"totalUsers"`
23
TotalWorkspaces int64 `json:"totalWorkspaces"`
24
TotalInstances int64 `json:"totalInstances"`
25
+ LicenseID string `json:"licenseId,omitempty`
26
27
28
type InstallationAdmin struct {
0 commit comments