2020-02-23 11:35:47 +00:00
|
|
|
package opentsdbhttp
|
|
|
|
|
|
|
|
import (
|
2022-08-24 13:17:44 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2020-02-23 11:35:47 +00:00
|
|
|
"net/http"
|
2022-08-24 13:17:44 +00:00
|
|
|
"strings"
|
2020-02-23 11:35:47 +00:00
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmagent/common"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmagent/remotewrite"
|
2022-08-24 13:17:44 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
2021-01-12 22:52:50 +00:00
|
|
|
parserCommon "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
2020-02-23 11:35:47 +00:00
|
|
|
parser "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/opentsdbhttp"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/writeconcurrencylimiter"
|
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
rowsInserted = metrics.NewCounter(`vmagent_rows_inserted_total{type="opentsdbhttp"}`)
|
|
|
|
rowsPerInsert = metrics.NewHistogram(`vmagent_rows_per_insert{type="opentsdbhttp"}`)
|
|
|
|
)
|
|
|
|
|
|
|
|
// InsertHandler processes HTTP OpenTSDB put requests.
|
|
|
|
// See http://opentsdb.net/docs/build/html/api_http/put.html
|
|
|
|
func InsertHandler(req *http.Request) error {
|
2022-08-24 13:17:44 +00:00
|
|
|
path := strings.Replace(req.URL.Path, "//", "/", -1)
|
|
|
|
p, err := httpserver.ParsePath(path)
|
|
|
|
if err != nil {
|
|
|
|
// Cannot parse multitenant path. Skip it - probably it will be parsed later.
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if p.Prefix != "insert" {
|
|
|
|
return errors.New(fmt.Sprintf(`unsupported multitenant prefix: %q; expected "insert"`, p.Prefix))
|
|
|
|
}
|
|
|
|
at, err := auth.NewToken(p.AuthToken)
|
2021-01-12 22:52:50 +00:00
|
|
|
extraLabels, err := parserCommon.GetExtraLabels(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-02-23 11:35:47 +00:00
|
|
|
return writeconcurrencylimiter.Do(func() error {
|
2021-01-12 22:52:50 +00:00
|
|
|
return parser.ParseStream(req, func(rows []parser.Row) error {
|
2022-08-24 13:17:44 +00:00
|
|
|
return insertRows(at, rows, extraLabels)
|
2021-01-12 22:52:50 +00:00
|
|
|
})
|
2020-02-23 11:35:47 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-24 13:17:44 +00:00
|
|
|
func insertRows(at *auth.Token, rows []parser.Row, extraLabels []prompbmarshal.Label) error {
|
2020-02-23 11:35:47 +00:00
|
|
|
ctx := common.GetPushCtx()
|
|
|
|
defer common.PutPushCtx(ctx)
|
|
|
|
|
|
|
|
tssDst := ctx.WriteRequest.Timeseries[:0]
|
|
|
|
labels := ctx.Labels[:0]
|
|
|
|
samples := ctx.Samples[:0]
|
|
|
|
for i := range rows {
|
|
|
|
r := &rows[i]
|
|
|
|
labelsLen := len(labels)
|
|
|
|
labels = append(labels, prompbmarshal.Label{
|
|
|
|
Name: "__name__",
|
|
|
|
Value: r.Metric,
|
|
|
|
})
|
|
|
|
for j := range r.Tags {
|
|
|
|
tag := &r.Tags[j]
|
|
|
|
labels = append(labels, prompbmarshal.Label{
|
|
|
|
Name: tag.Key,
|
|
|
|
Value: tag.Value,
|
|
|
|
})
|
|
|
|
}
|
2021-01-12 22:52:50 +00:00
|
|
|
labels = append(labels, extraLabels...)
|
2020-02-23 11:35:47 +00:00
|
|
|
samples = append(samples, prompbmarshal.Sample{
|
|
|
|
Value: r.Value,
|
|
|
|
Timestamp: r.Timestamp,
|
|
|
|
})
|
|
|
|
tssDst = append(tssDst, prompbmarshal.TimeSeries{
|
|
|
|
Labels: labels[labelsLen:],
|
|
|
|
Samples: samples[len(samples)-1:],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
ctx.WriteRequest.Timeseries = tssDst
|
|
|
|
ctx.Labels = labels
|
|
|
|
ctx.Samples = samples
|
2022-08-24 13:17:44 +00:00
|
|
|
remotewrite.Push(at, &ctx.WriteRequest)
|
2020-02-23 11:35:47 +00:00
|
|
|
rowsInserted.Add(len(rows))
|
|
|
|
rowsPerInsert.Update(float64(len(rows)))
|
|
|
|
return nil
|
|
|
|
}
|