Documentation ¶
Index ¶
- type Config
- type Frontend
- func (f *Frontend) CheckReady(_ context.Context) error
- func (f *Frontend) NotifyClientShutdown(_ context.Context, req *frontendv1pb.NotifyClientShutdownRequest) (*frontendv1pb.NotifyClientShutdownResponse, error)
- func (f *Frontend) Process(server frontendv1pb.Frontend_ProcessServer) error
- func (f *Frontend) RoundTripGRPC(ctx context.Context, req *httpgrpc.HTTPRequest) (*httpgrpc.HTTPResponse, error)
- type Limits
- type MockLimits
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
Config for a Frontend.
func (*Config) RegisterFlags ¶
RegisterFlags adds the flags required to config this to the given FlagSet.
type Frontend ¶
Frontend queues HTTP requests, dispatches them to backends, and handles retries for requests which failed.
func New ¶
func New(cfg Config, limits Limits, log log.Logger, registerer prometheus.Registerer, retry *transport.Retry) (*Frontend, error)
New creates a new frontend. Frontend implements service, and must be started and stopped.
func (*Frontend) CheckReady ¶
CheckReady determines if the query frontend is ready. Function parameters/return chosen to match the same method in the ingester
func (*Frontend) NotifyClientShutdown ¶ added in v1.9.0
func (f *Frontend) NotifyClientShutdown(_ context.Context, req *frontendv1pb.NotifyClientShutdownRequest) (*frontendv1pb.NotifyClientShutdownResponse, error)
func (*Frontend) Process ¶
func (f *Frontend) Process(server frontendv1pb.Frontend_ProcessServer) error
Process allows backends to pull requests from the frontend.
func (*Frontend) RoundTripGRPC ¶
func (f *Frontend) RoundTripGRPC(ctx context.Context, req *httpgrpc.HTTPRequest) (*httpgrpc.HTTPResponse, error)
RoundTripGRPC round trips a proto (instead of a HTTP request).
type MockLimits ¶ added in v1.15.0
type MockLimits struct { Queriers float64 queue.MockLimits // contains filtered or unexported fields }
MockLimits implements the Limits interface. Used in tests only.
func (MockLimits) MaxQueriersPerUser ¶ added in v1.15.0
func (l MockLimits) MaxQueriersPerUser(_ string) float64
func (MockLimits) QueryPriority ¶ added in v1.17.0
func (l MockLimits) QueryPriority(_ string) validation.QueryPriority
Click to show internal directories.
Click to hide internal directories.