summaryrefslogtreecommitdiffstats
path: root/app/diagnostics.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/diagnostics.go')
-rw-r--r--app/diagnostics.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/diagnostics.go b/app/diagnostics.go
index f110f15d3..d3eee29c5 100644
--- a/app/diagnostics.go
+++ b/app/diagnostics.go
@@ -361,12 +361,12 @@ func trackConfig() {
func trackLicense() {
if utils.IsLicensed {
data := map[string]interface{}{
- "name": utils.License.Customer.Name,
- "company": utils.License.Customer.Company,
- "issued": utils.License.IssuedAt,
- "start": utils.License.StartsAt,
- "expire": utils.License.ExpiresAt,
- "users": *utils.License.Features.Users,
+ "customer_id": utils.License.Customer.Id,
+ "license_id": utils.License.Id,
+ "issued": utils.License.IssuedAt,
+ "start": utils.License.StartsAt,
+ "expire": utils.License.ExpiresAt,
+ "users": *utils.License.Features.Users,
}
features := utils.License.Features.ToMap()