annotations.go 328 B

12345678910111213141516171819202122
  1. package models
  2. import (
  3. "time"
  4. "github.com/grafana/grafana/pkg/components/simplejson"
  5. )
  6. type AnnotationType string
  7. type AnnotationEvent struct {
  8. Id int64
  9. OrgId int64
  10. Type AnnotationType
  11. Title string
  12. Text string
  13. AlertId int64
  14. UserId int64
  15. Timestamp time.Time
  16. Data *simplejson.Json
  17. }