Documentation ¶
Index ¶
Constants ¶
const DefaultChunkSize = 10000
DefaultChunkSize is the default number of points to write in one chunk.
Variables ¶
This section is empty.
Functions ¶
func NewRouter ¶
func NewRouter(h platform.HTTPErrorHandler) *httprouter.Router
NewRouter returns a new router with a 404 handler, a 405 handler, and a panic handler.
Types ¶
type Authorizer ¶
type Backend ¶
type Backend struct { influxdb.HTTPErrorHandler Logger *zap.Logger MaxBatchSizeBytes int64 WriteEventRecorder metric.EventRecorder AuthorizationService influxdb.AuthorizationService OrganizationService influxdb.OrganizationService BucketService influxdb.BucketService PointsWriter storage.PointsWriter DBRPMappingServiceV2 influxdb.DBRPMappingServiceV2 ProxyQueryService query.ProxyQueryService InfluxqldQueryService influxql.ProxyQueryService }
type Handler ¶
type Handler struct { influxdb.HTTPErrorHandler PointsWriterHandler *WriteHandler PingHandler *PingHandler InfluxQLHandler *InfluxqlHandler }
Handler is a collection of all the service handlers.
func (*Handler) PrometheusCollectors ¶
func (h *Handler) PrometheusCollectors() []prometheus.Collector
type HandlerConfig ¶
HandlerConfig provides configuration for the legacy handler.
func NewHandlerConfig ¶
func NewHandlerConfig() *HandlerConfig
func (*HandlerConfig) Opts ¶
func (c *HandlerConfig) Opts() []cli.Opt
Opts returns the CLI options for use with kit/cli. Currently set values on c are provided as the defaults.
type Influx1xAuthenticationHandler ¶
type Influx1xAuthenticationHandler struct { influxdb.HTTPErrorHandler // contains filtered or unexported fields }
func NewInflux1xAuthenticationHandler ¶
func NewInflux1xAuthenticationHandler(next http.Handler, auth Authorizer, h influxdb.HTTPErrorHandler) *Influx1xAuthenticationHandler
NewInflux1xAuthenticationHandler creates an authentication handler to process InfluxDB 1.x authentication requests.
func (*Influx1xAuthenticationHandler) ServeHTTP ¶
func (h *Influx1xAuthenticationHandler) ServeHTTP(w http.ResponseWriter, r *http.Request)
ServeHTTP extracts the session or token from the http request and places the resulting authorizer on the request context.
type InfluxQLBackend ¶
type InfluxQLBackend struct { platform.HTTPErrorHandler Logger *zap.Logger AuthorizationService platform.AuthorizationService OrganizationService platform.OrganizationService ProxyQueryService query.ProxyQueryService InfluxqldQueryService influxqld.ProxyQueryService }
func NewInfluxQLBackend ¶
func NewInfluxQLBackend(b *Backend) *InfluxQLBackend
NewInfluxQLBackend constructs an InfluxQLBackend from a LegacyBackend.
type InfluxqlHandler ¶
type InfluxqlHandler struct { *InfluxQLBackend HandlerConfig Metrics *control.ControllerMetrics }
InfluxqlHandler mimics the /query handler from influxdb, but, enriches with org and forwards requests to the transpiler service.
func NewInfluxQLHandler ¶
func NewInfluxQLHandler(b *InfluxQLBackend, config HandlerConfig) *InfluxqlHandler
NewInfluxQLHandler returns a new instance of InfluxqlHandler to handle influxql v1 queries
func (*InfluxqlHandler) PrometheusCollectors ¶
func (h *InfluxqlHandler) PrometheusCollectors() []prometheus.Collector
func (*InfluxqlHandler) ServeHTTP ¶
func (h *InfluxqlHandler) ServeHTTP(w http.ResponseWriter, req *http.Request)
type PingHandler ¶
type PingHandler struct { *httprouter.Router InfluxDBVersion string }
func NewPingHandler ¶
func NewPingHandler(version string) *PingHandler
type PointsWriterBackend ¶
type PointsWriterBackend struct { influxdb.HTTPErrorHandler Logger *zap.Logger EventRecorder metric.EventRecorder BucketService influxdb.BucketService PointsWriter storage.PointsWriter DBRPMappingService influxdb.DBRPMappingServiceV2 }
PointsWriterBackend contains all the services needed to run a PointsWriterHandler.
func NewPointsWriterBackend ¶
func NewPointsWriterBackend(b *Backend) *PointsWriterBackend
NewPointsWriterBackend creates a new backend for legacy work.
type WriteHandler ¶
type WriteHandler struct { influxdb.HTTPErrorHandler EventRecorder metric.EventRecorder BucketService influxdb.BucketService PointsWriter storage.PointsWriter DBRPMappingService influxdb.DBRPMappingServiceV2 // contains filtered or unexported fields }
PointsWriterHandler represents an HTTP API handler for writing points.
func NewWriterHandler ¶
func NewWriterHandler(b *PointsWriterBackend, opts ...WriteHandlerOption) *WriteHandler
NewWriterHandler returns a new instance of PointsWriterHandler.
func (*WriteHandler) ServeHTTP ¶
func (h *WriteHandler) ServeHTTP(w http.ResponseWriter, r *http.Request)
ServeHTTP implements http.Handler
type WriteHandlerOption ¶
type WriteHandlerOption func(*WriteHandler)
WriteHandlerOption is a functional option for a *PointsWriterHandler
func WithMaxBatchSizeBytes ¶
func WithMaxBatchSizeBytes(n int64) WriteHandlerOption
WithMaxBatchSizeBytes configures the maximum size for a (decompressed) points batch allowed by the write handler