VictoriaMetrics/app/vminsert/opentsdb/request_handler.go

45 lines
1.2 KiB
Go
Raw Normal View History

2019-05-22 21:16:55 +00:00
package opentsdb
import (
"io"
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/common"
parser "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/opentsdb"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/writeconcurrencylimiter"
2019-05-22 21:16:55 +00:00
"github.com/VictoriaMetrics/metrics"
)
var (
rowsInserted = metrics.NewCounter(`vm_rows_inserted_total{type="opentsdb"}`)
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="opentsdb"}`)
)
2019-05-22 21:16:55 +00:00
// InsertHandler processes remote write for OpenTSDB put protocol.
2019-05-22 21:16:55 +00:00
//
// See http://opentsdb.net/docs/build/html/api_telnet/put.html
func InsertHandler(r io.Reader) error {
return writeconcurrencylimiter.Do(func() error {
return parser.ParseStream(r, insertRows)
2019-05-22 21:16:55 +00:00
})
}
func insertRows(rows []parser.Row) error {
ctx := common.GetInsertCtx()
defer common.PutInsertCtx(ctx)
2019-05-22 21:16:55 +00:00
ctx.Reset(len(rows))
2019-05-22 21:16:55 +00:00
for i := range rows {
r := &rows[i]
ctx.Labels = ctx.Labels[:0]
ctx.AddLabel("", r.Metric)
2019-05-22 21:16:55 +00:00
for j := range r.Tags {
tag := &r.Tags[j]
ctx.AddLabel(tag.Key, tag.Value)
2019-05-22 21:16:55 +00:00
}
ctx.WriteDataPoint(nil, ctx.Labels, r.Timestamp, r.Value)
2019-05-22 21:16:55 +00:00
}
rowsInserted.Add(len(rows))
rowsPerInsert.Update(float64(len(rows)))
return ctx.FlushBufs()
2019-05-22 21:16:55 +00:00
}