grafana/pkg/models/stats.go
2015-09-29 13:47:56 +02:00

21 lines
288 B
Go

package models
type SystemStats struct {
DashboardCount int
UserCount int
OrgCount int
}
type DataSourceStats struct {
Count int
Type string
}
type GetSystemStatsQuery struct {
Result *SystemStats
}
type GetDataSourceStatsQuery struct {
Result []*DataSourceStats
}