Documentation ¶
Index ¶
- type ConfigStore
- type DashboardsStore
- func (s *DashboardsStore) Add(context.Context, chronograf.Dashboard) (chronograf.Dashboard, error)
- func (s *DashboardsStore) All(context.Context) ([]chronograf.Dashboard, error)
- func (s *DashboardsStore) Delete(context.Context, chronograf.Dashboard) error
- func (s *DashboardsStore) Get(ctx context.Context, ID chronograf.DashboardID) (chronograf.Dashboard, error)
- func (s *DashboardsStore) Update(context.Context, chronograf.Dashboard) error
- type LayoutsStore
- func (s *LayoutsStore) Add(context.Context, chronograf.Layout) (chronograf.Layout, error)
- func (s *LayoutsStore) All(context.Context) ([]chronograf.Layout, error)
- func (s *LayoutsStore) Delete(context.Context, chronograf.Layout) error
- func (s *LayoutsStore) Get(ctx context.Context, ID string) (chronograf.Layout, error)
- func (s *LayoutsStore) Update(context.Context, chronograf.Layout) error
- type MappingsStore
- func (s *MappingsStore) Add(context.Context, *chronograf.Mapping) (*chronograf.Mapping, error)
- func (s *MappingsStore) All(context.Context) ([]chronograf.Mapping, error)
- func (s *MappingsStore) Delete(context.Context, *chronograf.Mapping) error
- func (s *MappingsStore) Get(ctx context.Context, ID string) (*chronograf.Mapping, error)
- func (s *MappingsStore) Update(context.Context, *chronograf.Mapping) error
- type OrganizationConfigStore
- type OrganizationsStore
- func (s *OrganizationsStore) Add(context.Context, *chronograf.Organization) (*chronograf.Organization, error)
- func (s *OrganizationsStore) All(context.Context) ([]chronograf.Organization, error)
- func (s *OrganizationsStore) CreateDefault(context.Context) error
- func (s *OrganizationsStore) DefaultOrganization(context.Context) (*chronograf.Organization, error)
- func (s *OrganizationsStore) Delete(context.Context, *chronograf.Organization) error
- func (s *OrganizationsStore) Get(ctx context.Context, q chronograf.OrganizationQuery) (*chronograf.Organization, error)
- func (s *OrganizationsStore) Update(context.Context, *chronograf.Organization) error
- type ServersStore
- func (s *ServersStore) Add(context.Context, chronograf.Server) (chronograf.Server, error)
- func (s *ServersStore) All(context.Context) ([]chronograf.Server, error)
- func (s *ServersStore) Delete(context.Context, chronograf.Server) error
- func (s *ServersStore) Get(ctx context.Context, ID int) (chronograf.Server, error)
- func (s *ServersStore) Update(context.Context, chronograf.Server) error
- type SourcesStore
- func (s *SourcesStore) Add(context.Context, chronograf.Source) (chronograf.Source, error)
- func (s *SourcesStore) All(context.Context) ([]chronograf.Source, error)
- func (s *SourcesStore) Delete(context.Context, chronograf.Source) error
- func (s *SourcesStore) Get(ctx context.Context, ID int) (chronograf.Source, error)
- func (s *SourcesStore) Update(context.Context, chronograf.Source) error
- type UsersStore
- func (s *UsersStore) Add(context.Context, *chronograf.User) (*chronograf.User, error)
- func (s *UsersStore) All(context.Context) ([]chronograf.User, error)
- func (s *UsersStore) Delete(context.Context, *chronograf.User) error
- func (s *UsersStore) Get(ctx context.Context, q chronograf.UserQuery) (*chronograf.User, error)
- func (s *UsersStore) Num(context.Context) (int, error)
- func (s *UsersStore) Update(context.Context, *chronograf.User) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigStore ¶
type ConfigStore struct{}
func (*ConfigStore) Get ¶
func (s *ConfigStore) Get(context.Context) (*chronograf.Config, error)
func (*ConfigStore) Initialize ¶
func (s *ConfigStore) Initialize(context.Context) error
TODO(desa): this really should be removed
func (*ConfigStore) Update ¶
func (s *ConfigStore) Update(context.Context, *chronograf.Config) error
type DashboardsStore ¶
type DashboardsStore struct{}
func (*DashboardsStore) Add ¶
func (s *DashboardsStore) Add(context.Context, chronograf.Dashboard) (chronograf.Dashboard, error)
func (*DashboardsStore) All ¶
func (s *DashboardsStore) All(context.Context) ([]chronograf.Dashboard, error)
func (*DashboardsStore) Delete ¶
func (s *DashboardsStore) Delete(context.Context, chronograf.Dashboard) error
func (*DashboardsStore) Get ¶
func (s *DashboardsStore) Get(ctx context.Context, ID chronograf.DashboardID) (chronograf.Dashboard, error)
func (*DashboardsStore) Update ¶
func (s *DashboardsStore) Update(context.Context, chronograf.Dashboard) error
type LayoutsStore ¶
type LayoutsStore struct{}
func (*LayoutsStore) Add ¶
func (s *LayoutsStore) Add(context.Context, chronograf.Layout) (chronograf.Layout, error)
func (*LayoutsStore) All ¶
func (s *LayoutsStore) All(context.Context) ([]chronograf.Layout, error)
func (*LayoutsStore) Delete ¶
func (s *LayoutsStore) Delete(context.Context, chronograf.Layout) error
func (*LayoutsStore) Get ¶
func (s *LayoutsStore) Get(ctx context.Context, ID string) (chronograf.Layout, error)
func (*LayoutsStore) Update ¶
func (s *LayoutsStore) Update(context.Context, chronograf.Layout) error
type MappingsStore ¶
type MappingsStore struct{}
func (*MappingsStore) Add ¶
func (s *MappingsStore) Add(context.Context, *chronograf.Mapping) (*chronograf.Mapping, error)
func (*MappingsStore) All ¶
func (s *MappingsStore) All(context.Context) ([]chronograf.Mapping, error)
func (*MappingsStore) Delete ¶
func (s *MappingsStore) Delete(context.Context, *chronograf.Mapping) error
func (*MappingsStore) Get ¶
func (s *MappingsStore) Get(ctx context.Context, ID string) (*chronograf.Mapping, error)
func (*MappingsStore) Update ¶
func (s *MappingsStore) Update(context.Context, *chronograf.Mapping) error
type OrganizationConfigStore ¶
type OrganizationConfigStore struct{}
func (*OrganizationConfigStore) FindOrCreate ¶
func (s *OrganizationConfigStore) FindOrCreate(context.Context, string) (*chronograf.OrganizationConfig, error)
func (*OrganizationConfigStore) Put ¶
func (s *OrganizationConfigStore) Put(context.Context, *chronograf.OrganizationConfig) error
type OrganizationsStore ¶
type OrganizationsStore struct{}
func (*OrganizationsStore) Add ¶
func (s *OrganizationsStore) Add(context.Context, *chronograf.Organization) (*chronograf.Organization, error)
func (*OrganizationsStore) All ¶
func (s *OrganizationsStore) All(context.Context) ([]chronograf.Organization, error)
func (*OrganizationsStore) CreateDefault ¶
func (s *OrganizationsStore) CreateDefault(context.Context) error
func (*OrganizationsStore) DefaultOrganization ¶
func (s *OrganizationsStore) DefaultOrganization(context.Context) (*chronograf.Organization, error)
func (*OrganizationsStore) Delete ¶
func (s *OrganizationsStore) Delete(context.Context, *chronograf.Organization) error
func (*OrganizationsStore) Get ¶
func (s *OrganizationsStore) Get(ctx context.Context, q chronograf.OrganizationQuery) (*chronograf.Organization, error)
func (*OrganizationsStore) Update ¶
func (s *OrganizationsStore) Update(context.Context, *chronograf.Organization) error
type ServersStore ¶
type ServersStore struct{}
func (*ServersStore) Add ¶
func (s *ServersStore) Add(context.Context, chronograf.Server) (chronograf.Server, error)
func (*ServersStore) All ¶
func (s *ServersStore) All(context.Context) ([]chronograf.Server, error)
func (*ServersStore) Delete ¶
func (s *ServersStore) Delete(context.Context, chronograf.Server) error
func (*ServersStore) Get ¶
func (s *ServersStore) Get(ctx context.Context, ID int) (chronograf.Server, error)
func (*ServersStore) Update ¶
func (s *ServersStore) Update(context.Context, chronograf.Server) error
type SourcesStore ¶
type SourcesStore struct{}
func (*SourcesStore) Add ¶
func (s *SourcesStore) Add(context.Context, chronograf.Source) (chronograf.Source, error)
func (*SourcesStore) All ¶
func (s *SourcesStore) All(context.Context) ([]chronograf.Source, error)
func (*SourcesStore) Delete ¶
func (s *SourcesStore) Delete(context.Context, chronograf.Source) error
func (*SourcesStore) Get ¶
func (s *SourcesStore) Get(ctx context.Context, ID int) (chronograf.Source, error)
func (*SourcesStore) Update ¶
func (s *SourcesStore) Update(context.Context, chronograf.Source) error
type UsersStore ¶
type UsersStore struct{}
func (*UsersStore) Add ¶
func (s *UsersStore) Add(context.Context, *chronograf.User) (*chronograf.User, error)
func (*UsersStore) All ¶
func (s *UsersStore) All(context.Context) ([]chronograf.User, error)
func (*UsersStore) Delete ¶
func (s *UsersStore) Delete(context.Context, *chronograf.User) error
func (*UsersStore) Get ¶
func (s *UsersStore) Get(ctx context.Context, q chronograf.UserQuery) (*chronograf.User, error)
func (*UsersStore) Update ¶
func (s *UsersStore) Update(context.Context, *chronograf.User) error
Click to show internal directories.
Click to hide internal directories.