Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AlertStore ¶
type AlertStore interface { // ListAllUsers returns all users with alertmanager configuration. ListAllUsers(ctx context.Context) ([]string, error) // GetAlertConfigs loads and returns the alertmanager configuration for given users. // If any of the provided users has no configuration, then this function does not return an // error but the returned configs will not include the missing users. GetAlertConfigs(ctx context.Context, userIDs []string) (map[string]alertspb.AlertConfigDescs, error) // GetAlertConfig loads and returns the alertmanager configuration for the given user. GetAlertConfig(ctx context.Context, user string) (alertspb.AlertConfigDesc, error) // SetAlertConfig stores the alertmanager configuration for a user. SetAlertConfig(ctx context.Context, cfg alertspb.AlertConfigDesc) error // DeleteAlertConfig deletes the alertmanager configuration for a user. // If configuration for the user doesn't exist, no error is reported. DeleteAlertConfig(ctx context.Context, user string) error // GetGrafanaAlertConfig returns the Grafana Alertmanager configuration for a user. GetGrafanaAlertConfig(ctx context.Context, user string) (alertspb.GrafanaAlertConfigDesc, error) // SetGrafanaAlertConfig stores the Grafana Alertmanager configuration for a user. SetGrafanaAlertConfig(ctx context.Context, cfg alertspb.GrafanaAlertConfigDesc) error // DeleteGrafanaAlertConfig delete the Grafana Alertmanager configuration for a user. // If configuration for the user doesn't exist, no error is reported. DeleteGrafanaAlertConfig(ctx context.Context, user string) error // GetFullGrafanaState returns the Grafana Alertmanager state for a user. GetFullGrafanaState(ctx context.Context, user string) (alertspb.FullStateDesc, error) // SetFullGrafanaState stores the Grafana Alertmanager state for a user. SetFullGrafanaState(ctx context.Context, user string, fs alertspb.FullStateDesc) error // DeleteFullGrafanaState delete the Grafana Alertmanager state for a user. // If state for the user doesn't exist, no error is reported. DeleteFullGrafanaState(ctx context.Context, user string) error // ListUsersWithFullState returns the list of users which have had state written. ListUsersWithFullState(ctx context.Context) ([]string, error) // GetFullState loads and returns the alertmanager state for the given user. GetFullState(ctx context.Context, user string) (alertspb.FullStateDesc, error) // SetFullState stores the alertmanager state for the given user. SetFullState(ctx context.Context, user string, fs alertspb.FullStateDesc) error // DeleteFullState deletes the alertmanager state for an user. // If state for the user doesn't exist, no error is reported. DeleteFullState(ctx context.Context, user string) error }
AlertStore stores and configures users rule configs
func NewAlertStore ¶
func NewAlertStore(ctx context.Context, cfg Config, cfgProvider bucket.TenantConfigProvider, bucketConfig bucketclient.BucketAlertStoreConfig, logger log.Logger, reg prometheus.Registerer) (AlertStore, error)
NewAlertStore returns a alertmanager store backend client based on the provided cfg.
Click to show internal directories.
Click to hide internal directories.