| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package annotations
- import "github.com/grafana/grafana/pkg/components/simplejson"
- type Repository interface {
- Save(item *Item) error
- Find(query *ItemQuery) ([]*Item, error)
- Delete(params *DeleteParams) error
- }
- type ItemQuery struct {
- OrgId int64 `json:"orgId"`
- From int64 `json:"from"`
- To int64 `json:"to"`
- Type ItemType `json:"type"`
- AlertId int64 `json:"alertId"`
- DashboardId int64 `json:"dashboardId"`
- PanelId int64 `json:"panelId"`
- NewState []string `json:"newState"`
- Limit int64 `json:"limit"`
- }
- type DeleteParams struct {
- AlertId int64 `json:"alertId"`
- DashboardId int64 `json:"dashboardId"`
- PanelId int64 `json:"panelId"`
- }
- var repositoryInstance Repository
- func GetRepository() Repository {
- return repositoryInstance
- }
- func SetRepository(rep Repository) {
- repositoryInstance = rep
- }
- type ItemType string
- const (
- AlertType ItemType = "alert"
- )
- type Item struct {
- Id int64 `json:"id"`
- OrgId int64 `json:"orgId"`
- DashboardId int64 `json:"dashboardId"`
- PanelId int64 `json:"panelId"`
- CategoryId int64 `json:"categoryId"`
- Type ItemType `json:"type"`
- Title string `json:"title"`
- Text string `json:"text"`
- Metric string `json:"metric"`
- AlertId int64 `json:"alertId"`
- UserId int64 `json:"userId"`
- PrevState string `json:"prevState"`
- NewState string `json:"newState"`
- Epoch int64 `json:"epoch"`
- Data *simplejson.Json `json:"data"`
- }
|