forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrafana.go
36 lines (31 loc) · 1.28 KB
/
grafana.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package models
import "github.com/grafana-tools/sdk"
// GrafanaBoard represents a Grafana board
type GrafanaBoard struct {
URI string `json:"uri,omitempty"`
Title string `json:"title,omitempty"`
Slug string `json:"slug,omitempty"`
UID string `json:"uid,omitempty"`
OrgID uint `json:"org_id,omitempty"`
Panels []*sdk.Panel `json:"panels,omitempty"`
TemplateVars []*GrafanaTemplateVars `json:"template_vars,omitempty"`
}
// GrafanaTemplateVars represents template variables in a bboard
type GrafanaTemplateVars struct {
Name string `json:"name,omitempty"`
Query string `json:"query,omitempty"`
Datasource *GrafanaDataSource `json:"datasource,omitempty"`
Hide uint8 `json:"hide,omitempty"`
Value interface{} `json:"value,omitempty"`
}
// GrafanaDataSource represents a Grafana datasource like Prometheus
type GrafanaDataSource struct {
ID uint `json:"id,omitempty"`
Name string `json:"name,omitempty"`
}
// GrafanaPanel represents Grafana panel
type GrafanaPanel struct {
PType string `json:"type,omitempty"`
ID uint `json:"id,omitempty"`
Title string `json:"title,omitempty"`
}