mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
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:"from"`
|
|
Type ItemType `json:"type"`
|
|
AlertId int64 `json:"alertId"`
|
|
DashboardId int64 `json:"dashboardId"`
|
|
PanelId int64 `json:"panelId"`
|
|
NewState []string `json:"newState"`
|
|
|
|
Limit int64 `json:"alertId"`
|
|
}
|
|
|
|
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:"panelId"`
|
|
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"`
|
|
}
|