Documentation ¶
Index ¶
- func InitStorageNodes(addrs []string)
- func Stop()
- type InsertCtx
- func (ctx *InsertCtx) AddLabel(name, value string)
- func (ctx *InsertCtx) AddLabelBytes(name, value []byte)
- func (ctx *InsertCtx) FlushBufs() error
- func (ctx *InsertCtx) GetStorageNodeIdx(at *auth.Token, labels []prompb.Label) int
- func (ctx *InsertCtx) Reset()
- func (ctx *InsertCtx) WriteDataPoint(at *auth.Token, labels []prompb.Label, timestamp int64, value float64) error
- func (ctx *InsertCtx) WriteDataPointExt(at *auth.Token, storageNodeIdx int, metricNameRaw []byte, timestamp int64, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InitStorageNodes ¶
func InitStorageNodes(addrs []string)
InitStorageNodes initializes vmstorage nodes' connections to the given addrs.
Types ¶
type InsertCtx ¶
type InsertCtx struct { Labels []prompb.Label MetricNameBuf []byte // contains filtered or unexported fields }
InsertCtx is a generic context for inserting data.
InsertCtx.Reset must be called before the first usage.
func (*InsertCtx) AddLabel ¶
AddLabel adds (name, value) label to ctx.Labels.
name and value must exist until ctx.Labels is used.
func (*InsertCtx) AddLabelBytes ¶
AddLabelBytes adds (name, value) label to ctx.Labels.
name and value must exist until ctx.Labels is used.
func (*InsertCtx) GetStorageNodeIdx ¶
GetStorageNodeIdx returns storage node index for the given at and labels.
The returned index must be passed to WriteDataPoint.
Click to show internal directories.
Click to hide internal directories.