mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Alerting: Add first Grafana reserved label g_label g_label holds the title of the folder container the alert. The intention of this label is to use it as part of the new default notification policy groupBy. * Add nil check on updateRule labels map * Disable gocyclo lint on schedule.ruleRoutine will remove later in a separate refactoring PR to reduce complexity. * Address doc suggestions * Update g_folder for rules in folder when folder title changes * Remove global bus in FolderService * Modify tests to fit new common g_folder label * Add changelog entry * Fix merge conflicts * Switch GrafanaReservedLabelPrefix from `g_` to `grafana_`
73 lines
1.8 KiB
Go
73 lines
1.8 KiB
Go
package events
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Events can be passed to external systems via for example AMQP
|
|
// Treat these events as basically DTOs so changes has to be backward compatible
|
|
|
|
type OrgCreated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type OrgUpdated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type UserCreated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Login string `json:"login"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
type SignUpStarted struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Email string `json:"email"`
|
|
Code string `json:"code"`
|
|
}
|
|
|
|
type SignUpCompleted struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Name string `json:"name"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
type UserUpdated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Login string `json:"login"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
type DataSourceDeleted struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Name string `json:"name"`
|
|
ID int64 `json:"id"`
|
|
UID string `json:"uid"`
|
|
OrgID int64 `json:"org_id"`
|
|
}
|
|
|
|
type DataSourceCreated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Name string `json:"name"`
|
|
ID int64 `json:"id"`
|
|
UID string `json:"uid"`
|
|
OrgID int64 `json:"org_id"`
|
|
}
|
|
|
|
type FolderUpdated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
Title string `json:"name"`
|
|
ID int64 `json:"id"`
|
|
UID string `json:"uid"`
|
|
OrgID int64 `json:"org_id"`
|
|
}
|