Files
grafana/pkg/models/stats.go
Torkel Ödegaard d987532262 Added server metrics
2015-03-22 15:14:00 -04:00

12 lines
162 B
Go

package models
type SystemStats struct {
DashboardCount int
UserCount int
OrgCount int
}
type GetSystemStatsQuery struct {
Result *SystemStats
}