mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 17:24:59 -06:00
b2eeb0dd6e
* Alerting: update rule versions on folder move (#88361) * Add tracing to folder.Move and folder.Update
84 lines
2.2 KiB
Go
84 lines
2.2 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 DataSourceSecretDeleted 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"`
|
|
}
|
|
|
|
// FolderFullPathUpdated is emitted when the full path of the folder(s) is updated.
|
|
// For example, when the folder is renamed or moved to another folder.
|
|
// It does not contain the full path of the folders because calculating
|
|
// it requires more resources and not needed in the event at the moment.
|
|
type FolderFullPathUpdated struct {
|
|
Timestamp time.Time `json:"timestamp"`
|
|
ID int64 `json:"id"`
|
|
UIDs []string `json:"uids"`
|
|
OrgID int64 `json:"org_id"`
|
|
}
|