Commit bccc5397 by Jon Gyllenswärd Committed by GitHub

Instrumentation: Edition and license info to usage stats (#20589)

* Added edition and licensing info to usage stats
parent be6a4e80
......@@ -32,7 +32,8 @@ func (uss *UsageStatsService) sendUsageStats(oauthProviders map[string]bool) {
"metrics": metrics,
"os": runtime.GOOS,
"arch": runtime.GOARCH,
"edition": getEdition(uss.License.HasValidLicense()),
"edition": getEdition(),
"hasValidLicense": uss.License.HasValidLicense(),
"packaging": setting.Packaging,
}
......@@ -60,6 +61,9 @@ func (uss *UsageStatsService) sendUsageStats(oauthProviders map[string]bool) {
metrics["stats.snapshots.count"] = statsQuery.Result.Snapshots
metrics["stats.teams.count"] = statsQuery.Result.Teams
metrics["stats.total_auth_token.count"] = statsQuery.Result.AuthTokens
metrics["stats.valid_license.count"] = getValidLicenseCount(uss.License.HasValidLicense())
metrics["stats.edition.oss.count"] = getOssEditionCount()
metrics["stats.edition.enterprise.count"] = getEnterpriseEditionCount()
userCount := statsQuery.Result.Users
avgAuthTokensPerUser := statsQuery.Result.AuthTokens
......@@ -182,9 +186,32 @@ func (uss *UsageStatsService) updateTotalStats() {
metrics.StatsTotalActiveAdmins.Set(float64(statsQuery.Result.ActiveAdmins))
}
func getEdition(validLicense bool) string {
func getEdition() string {
edition := "oss"
if setting.IsEnterprise {
edition = "enterprise"
}
return edition
}
func getEnterpriseEditionCount() int {
if setting.IsEnterprise {
return 1
}
return 0
}
func getOssEditionCount() int {
if setting.IsEnterprise {
return 0
}
return 1
}
func getValidLicenseCount(validLicense bool) int {
if validLicense {
return "enterprise"
return 1
}
return "oss"
return 0
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment