mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
22 lines
490 B
Go
22 lines
490 B
Go
package featuremgmt
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/grafana/grafana/pkg/services/featuremgmt/strcase"
|
|
)
|
|
|
|
func (fm *FeatureManager) GetUsageStats(ctx context.Context) map[string]any {
|
|
enabled := fm.GetEnabled(ctx)
|
|
stats := make(map[string]any, len(enabled))
|
|
for featureName := range enabled {
|
|
stats[asMetricName(featureName)] = 1
|
|
}
|
|
return stats
|
|
}
|
|
|
|
func asMetricName(featureName string) string {
|
|
return fmt.Sprintf("stats.features.%s.count", strcase.ToSnake(featureName))
|
|
}
|