Documentation ¶
Index ¶
- Constants
- type Store
- func (f *Store) DeleteAlertConfig(_ context.Context, _ string) error
- func (f *Store) DeleteFullGrafanaState(_ context.Context, _ string) error
- func (f *Store) DeleteFullState(_ context.Context, _ string) error
- func (f *Store) DeleteGrafanaAlertConfig(_ context.Context, _ string) error
- func (f *Store) GetAlertConfig(_ context.Context, user string) (alertspb.AlertConfigDesc, error)
- func (f *Store) GetAlertConfigs(_ context.Context, userIDs []string) (map[string]alertspb.AlertConfigDescs, error)
- func (f *Store) GetFullGrafanaState(_ context.Context, _ string) (alertspb.FullStateDesc, error)
- func (f *Store) GetFullState(_ context.Context, _ string) (alertspb.FullStateDesc, error)
- func (f *Store) GetGrafanaAlertConfig(_ context.Context, _ string) (alertspb.GrafanaAlertConfigDesc, error)
- func (f *Store) ListAllUsers(_ context.Context) ([]string, error)
- func (f *Store) ListUsersWithFullState(_ context.Context) ([]string, error)
- func (f *Store) SetAlertConfig(_ context.Context, _ alertspb.AlertConfigDesc) error
- func (f *Store) SetFullGrafanaState(_ context.Context, _ string, _ alertspb.FullStateDesc) error
- func (f *Store) SetFullState(_ context.Context, _ string, _ alertspb.FullStateDesc) error
- func (f *Store) SetGrafanaAlertConfig(_ context.Context, _ alertspb.GrafanaAlertConfigDesc) error
- type StoreConfig
Constants ¶
const (
Name = "local"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store is used to load user alertmanager configs from a local disk
func NewStore ¶
func NewStore(cfg StoreConfig) (*Store, error)
NewStore returns a new file alert store.
func (*Store) DeleteAlertConfig ¶
DeleteAlertConfig implements alertstore.AlertStore.
func (*Store) DeleteFullGrafanaState ¶
func (*Store) DeleteFullState ¶
DeleteFullState implements alertstore.AlertStore.
func (*Store) DeleteGrafanaAlertConfig ¶
func (*Store) GetAlertConfig ¶
GetAlertConfig implements alertstore.AlertStore.
func (*Store) GetAlertConfigs ¶
func (f *Store) GetAlertConfigs(_ context.Context, userIDs []string) (map[string]alertspb.AlertConfigDescs, error)
GetAlertConfigs implements alertstore.AlertStore.
func (*Store) GetFullGrafanaState ¶
func (*Store) GetFullState ¶
GetFullState implements alertstore.AlertStore.
func (*Store) GetGrafanaAlertConfig ¶
func (*Store) ListAllUsers ¶
ListAllUsers implements alertstore.AlertStore.
func (*Store) ListUsersWithFullState ¶
ListUsersWithFullState implements alertstore.AlertStore.
func (*Store) SetAlertConfig ¶
SetAlertConfig implements alertstore.AlertStore.
func (*Store) SetFullGrafanaState ¶
func (*Store) SetFullState ¶
SetFullState implements alertstore.AlertStore.
func (*Store) SetGrafanaAlertConfig ¶
type StoreConfig ¶
type StoreConfig struct {
Path string `yaml:"path"`
}
StoreConfig configures a static file alertmanager store
func (*StoreConfig) RegisterFlagsWithPrefix ¶
func (cfg *StoreConfig) RegisterFlagsWithPrefix(prefix string, f *flag.FlagSet)
RegisterFlags registers flags related to the alertmanager local storage.