mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
21 lines
288 B
Go
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
|
|
}
|