2019-05-22 21:16:55 +00:00
|
|
|
package opentsdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
2019-05-22 21:23:23 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/netstorage"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
2020-02-23 11:35:47 +00:00
|
|
|
parser "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/opentsdb"
|
2019-06-07 18:16:05 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/writeconcurrencylimiter"
|
2019-05-22 21:16:55 +00:00
|
|
|
"github.com/VictoriaMetrics/metrics"
|
2019-06-06 15:06:21 +00:00
|
|
|
"github.com/valyala/fastjson/fastfloat"
|
2019-05-22 21:16:55 +00:00
|
|
|
)
|
|
|
|
|
2019-07-27 10:20:47 +00:00
|
|
|
var (
|
|
|
|
rowsInserted = tenantmetrics.NewCounterMap(`vm_rows_inserted_total{type="opentsdb"}`)
|
2020-02-23 11:35:47 +00:00
|
|
|
rowsPerInsert = metrics.NewHistogram(`vm_rows_per_insert{type="opentsdb"}`)
|
2019-07-27 10:20:47 +00:00
|
|
|
)
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2020-02-23 11:35:47 +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
|
2020-02-23 11:35:47 +00:00
|
|
|
func InsertHandler(at *auth.Token, r io.Reader) error {
|
|
|
|
return writeconcurrencylimiter.Do(func() error {
|
|
|
|
return parser.ParseStream(r, func(rows []parser.Row) error {
|
|
|
|
return insertRows(at, rows)
|
|
|
|
})
|
2019-05-22 21:16:55 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-23 11:35:47 +00:00
|
|
|
func insertRows(at *auth.Token, rows []parser.Row) error {
|
|
|
|
ctx := netstorage.GetInsertCtx()
|
|
|
|
defer netstorage.PutInsertCtx(ctx)
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2020-02-26 19:17:35 +00:00
|
|
|
ctx.Reset() // This line is required for initializing ctx internals.
|
2019-06-06 15:06:21 +00:00
|
|
|
atCopy := *at
|
2019-05-22 21:16:55 +00:00
|
|
|
for i := range rows {
|
|
|
|
r := &rows[i]
|
2020-02-23 11:35:47 +00:00
|
|
|
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]
|
2019-06-06 15:06:21 +00:00
|
|
|
if atCopy.AccountID == 0 {
|
|
|
|
// Multi-tenancy support via custom tags.
|
|
|
|
// Do not allow overriding AccountID and ProjectID from atCopy for security reasons.
|
|
|
|
if tag.Key == "VictoriaMetrics_AccountID" {
|
|
|
|
atCopy.AccountID = uint32(fastfloat.ParseUint64BestEffort(tag.Value))
|
|
|
|
}
|
|
|
|
if atCopy.ProjectID == 0 && tag.Key == "VictoriaMetrics_ProjectID" {
|
|
|
|
atCopy.ProjectID = uint32(fastfloat.ParseUint64BestEffort(tag.Value))
|
|
|
|
}
|
|
|
|
}
|
2020-02-23 11:35:47 +00:00
|
|
|
ctx.AddLabel(tag.Key, tag.Value)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
2020-02-23 11:35:47 +00:00
|
|
|
if err := ctx.WriteDataPoint(&atCopy, ctx.Labels, r.Timestamp, r.Value); err != nil {
|
2019-05-22 21:23:23 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
2019-06-07 18:16:05 +00:00
|
|
|
// Assume that all the rows for a single connection belong to the same (AccountID, ProjectID).
|
|
|
|
rowsInserted.Get(&atCopy).Add(len(rows))
|
2019-07-27 10:20:47 +00:00
|
|
|
rowsPerInsert.Update(float64(len(rows)))
|
2020-02-23 11:35:47 +00:00
|
|
|
return ctx.FlushBufs()
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|