2019-05-22 21:16:55 +00:00
package vminsert
import (
"flag"
"fmt"
"net/http"
"strings"
2020-06-18 22:10:18 +00:00
"sync/atomic"
2019-05-22 21:16:55 +00:00
2020-03-10 17:35:58 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/csvimport"
2019-05-22 21:16:55 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/graphite"
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/influx"
2020-09-26 01:29:45 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/native"
2019-05-22 21:16:55 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/opentsdb"
2019-08-22 09:27:18 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/opentsdbhttp"
2020-07-10 09:00:35 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/prometheusimport"
2020-02-23 11:35:47 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/prompush"
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/promremotewrite"
2020-07-02 16:42:12 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/relabel"
2019-12-09 18:58:19 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/vmimport"
2019-05-22 21:16:55 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
2020-02-23 11:35:47 +00:00
graphiteserver "github.com/VictoriaMetrics/VictoriaMetrics/lib/ingestserver/graphite"
2020-02-25 17:09:46 +00:00
influxserver "github.com/VictoriaMetrics/VictoriaMetrics/lib/ingestserver/influx"
2020-02-23 11:35:47 +00:00
opentsdbserver "github.com/VictoriaMetrics/VictoriaMetrics/lib/ingestserver/opentsdb"
opentsdbhttpserver "github.com/VictoriaMetrics/VictoriaMetrics/lib/ingestserver/opentsdbhttp"
2020-04-29 23:15:39 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/procutil"
2020-02-23 11:35:47 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape"
2020-09-28 01:11:55 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
2019-08-23 05:45:11 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
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"
)
var (
2019-12-13 22:29:14 +00:00
graphiteListenAddr = flag . String ( "graphiteListenAddr" , "" , "TCP and UDP address to listen for Graphite plaintext data. Usually :2003 must be set. Doesn't work if empty" )
2020-08-14 15:01:00 +00:00
influxListenAddr = flag . String ( "influxListenAddr" , "" , "TCP and UDP address to listen for Influx line protocol data. Usually :8189 must be set. Doesn't work if empty. " +
"This flag isn't needed when ingesting data over HTTP - just send it to `http://<victoriametrics>:8428/write`" )
2019-12-13 22:29:14 +00:00
opentsdbListenAddr = flag . String ( "opentsdbListenAddr" , "" , "TCP and UDP address to listen for OpentTSDB metrics. " +
"Telnet put messages and HTTP /api/put messages are simultaneously served on TCP port. " +
"Usually :4242 must be set. Doesn't work if empty" )
2019-08-22 09:27:18 +00:00
opentsdbHTTPListenAddr = flag . String ( "opentsdbHTTPListenAddr" , "" , "TCP address to listen for OpentTSDB HTTP put requests. Usually :4242 must be set. Doesn't work if empty" )
2020-11-23 15:33:17 +00:00
maxLabelsPerTimeseries = flag . Int ( "maxLabelsPerTimeseries" , 30 , "The maximum number of labels accepted per time series. Superfluous labels are dropped" )
2019-05-22 21:16:55 +00:00
)
2019-12-13 22:29:14 +00:00
var (
2020-02-25 17:09:46 +00:00
influxServer * influxserver . Server
2020-02-23 11:35:47 +00:00
graphiteServer * graphiteserver . Server
opentsdbServer * opentsdbserver . Server
opentsdbhttpServer * opentsdbhttpserver . Server
2019-12-13 22:29:14 +00:00
)
2019-05-22 21:16:55 +00:00
// Init initializes vminsert.
func Init ( ) {
2020-07-02 16:42:12 +00:00
relabel . Init ( )
2019-08-23 05:45:11 +00:00
storage . SetMaxLabelsPerTimeseries ( * maxLabelsPerTimeseries )
2020-09-28 01:11:55 +00:00
common . StartUnmarshalWorkers ( )
2020-02-23 11:35:47 +00:00
writeconcurrencylimiter . Init ( )
2020-02-25 17:09:46 +00:00
if len ( * influxListenAddr ) > 0 {
influxServer = influxserver . MustStart ( * influxListenAddr , influx . InsertHandlerForReader )
}
2019-05-22 21:16:55 +00:00
if len ( * graphiteListenAddr ) > 0 {
2020-02-23 11:35:47 +00:00
graphiteServer = graphiteserver . MustStart ( * graphiteListenAddr , graphite . InsertHandler )
2019-05-22 21:16:55 +00:00
}
if len ( * opentsdbListenAddr ) > 0 {
2020-02-23 11:35:47 +00:00
opentsdbServer = opentsdbserver . MustStart ( * opentsdbListenAddr , opentsdb . InsertHandler , opentsdbhttp . InsertHandler )
2019-05-22 21:16:55 +00:00
}
2019-08-22 09:27:18 +00:00
if len ( * opentsdbHTTPListenAddr ) > 0 {
2020-02-23 11:35:47 +00:00
opentsdbhttpServer = opentsdbhttpserver . MustStart ( * opentsdbHTTPListenAddr , opentsdbhttp . InsertHandler )
2019-08-22 09:27:18 +00:00
}
2020-02-23 11:35:47 +00:00
promscrape . Init ( prompush . Push )
2019-05-22 21:16:55 +00:00
}
// Stop stops vminsert.
func Stop ( ) {
2020-02-23 11:35:47 +00:00
promscrape . Stop ( )
2020-02-25 17:09:46 +00:00
if len ( * influxListenAddr ) > 0 {
influxServer . MustStop ( )
}
2019-05-22 21:16:55 +00:00
if len ( * graphiteListenAddr ) > 0 {
2019-12-13 22:29:14 +00:00
graphiteServer . MustStop ( )
2019-05-22 21:16:55 +00:00
}
if len ( * opentsdbListenAddr ) > 0 {
2019-12-13 22:29:14 +00:00
opentsdbServer . MustStop ( )
2019-05-22 21:16:55 +00:00
}
2019-08-22 09:27:18 +00:00
if len ( * opentsdbHTTPListenAddr ) > 0 {
2019-12-13 22:29:14 +00:00
opentsdbhttpServer . MustStop ( )
2019-08-22 09:27:18 +00:00
}
2020-09-28 01:11:55 +00:00
common . StopUnmarshalWorkers ( )
2019-05-22 21:16:55 +00:00
}
// RequestHandler is a handler for Prometheus remote storage write API
func RequestHandler ( w http . ResponseWriter , r * http . Request ) bool {
path := strings . Replace ( r . URL . Path , "//" , "/" , - 1 )
switch path {
2021-02-04 18:00:22 +00:00
case "/prometheus/api/v1/write" , "/api/v1/write" :
2019-05-22 21:16:55 +00:00
prometheusWriteRequests . Inc ( )
2020-02-23 11:35:47 +00:00
if err := promremotewrite . InsertHandler ( r ) ; err != nil {
2019-05-22 21:16:55 +00:00
prometheusWriteErrors . Inc ( )
2020-07-20 11:00:33 +00:00
httpserver . Errorf ( w , r , "error in %q: %s" , r . URL . Path , err )
2019-05-22 21:16:55 +00:00
return true
}
w . WriteHeader ( http . StatusNoContent )
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/api/v1/import" , "/api/v1/import" :
2019-12-09 18:58:19 +00:00
vmimportRequests . Inc ( )
if err := vmimport . InsertHandler ( r ) ; err != nil {
vmimportErrors . Inc ( )
2020-07-20 11:00:33 +00:00
httpserver . Errorf ( w , r , "error in %q: %s" , r . URL . Path , err )
2019-12-09 18:58:19 +00:00
return true
}
2019-12-18 23:21:49 +00:00
w . WriteHeader ( http . StatusNoContent )
2019-12-09 18:58:19 +00:00
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/api/v1/import/csv" , "/api/v1/import/csv" :
2020-03-10 17:35:58 +00:00
csvimportRequests . Inc ( )
if err := csvimport . InsertHandler ( r ) ; err != nil {
csvimportErrors . Inc ( )
2020-07-20 11:00:33 +00:00
httpserver . Errorf ( w , r , "error in %q: %s" , r . URL . Path , err )
2020-03-10 17:35:58 +00:00
return true
}
w . WriteHeader ( http . StatusNoContent )
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/api/v1/import/prometheus" , "/api/v1/import/prometheus" :
2020-07-10 09:00:35 +00:00
prometheusimportRequests . Inc ( )
if err := prometheusimport . InsertHandler ( r ) ; err != nil {
prometheusimportErrors . Inc ( )
2020-07-20 11:00:33 +00:00
httpserver . Errorf ( w , r , "error in %q: %s" , r . URL . Path , err )
2020-07-10 09:00:35 +00:00
return true
}
w . WriteHeader ( http . StatusNoContent )
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/api/v1/import/native" , "/api/v1/import/native" :
2020-09-26 01:29:45 +00:00
nativeimportRequests . Inc ( )
if err := native . InsertHandler ( r ) ; err != nil {
nativeimportErrors . Inc ( )
httpserver . Errorf ( w , r , "error in %q: %s" , r . URL . Path , err )
return true
}
w . WriteHeader ( http . StatusNoContent )
return true
2021-02-04 18:00:22 +00:00
case "/influx/write" , "/influx/api/v2/write" , "/write" , "/api/v2/write" :
2019-05-22 21:16:55 +00:00
influxWriteRequests . Inc ( )
2020-02-25 17:09:46 +00:00
if err := influx . InsertHandlerForHTTP ( r ) ; err != nil {
2019-05-22 21:16:55 +00:00
influxWriteErrors . Inc ( )
2020-07-20 11:00:33 +00:00
httpserver . Errorf ( w , r , "error in %q: %s" , r . URL . Path , err )
2019-05-22 21:16:55 +00:00
return true
}
w . WriteHeader ( http . StatusNoContent )
return true
2021-02-04 18:00:22 +00:00
case "/influx/query" , "/query" :
2019-06-03 15:37:59 +00:00
// Emulate fake response for influx query.
// This is required for TSBS benchmark.
2019-05-22 21:16:55 +00:00
influxQueryRequests . Inc ( )
fmt . Fprintf ( w , ` { "results":[ { "series":[ { "values":[]}]}]} ` )
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/targets" , "/targets" :
2020-02-25 16:13:11 +00:00
promscrapeTargetsRequests . Inc ( )
2020-12-14 12:02:57 +00:00
promscrape . WriteHumanReadableTargetsStatus ( w , r )
2020-02-25 16:13:11 +00:00
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/api/v1/targets" , "/api/v1/targets" :
2020-10-20 18:44:59 +00:00
promscrapeAPIV1TargetsRequests . Inc ( )
2020-11-13 08:25:39 +00:00
w . Header ( ) . Set ( "Content-Type" , "application/json; charset=utf-8" )
2020-10-20 18:44:59 +00:00
state := r . FormValue ( "state" )
promscrape . WriteAPIV1Targets ( w , state )
return true
2021-02-04 18:00:22 +00:00
case "/prometheus/-/reload" , "/-/reload" :
2020-04-29 23:15:39 +00:00
promscrapeConfigReloadRequests . Inc ( )
procutil . SelfSIGHUP ( )
w . WriteHeader ( http . StatusNoContent )
return true
2020-11-04 18:29:18 +00:00
case "/ready" :
if rdy := atomic . LoadInt32 ( & promscrape . PendingScrapeConfigs ) ; rdy > 0 {
errMsg := fmt . Sprintf ( "waiting for scrape config to init targets, configs left: %d" , rdy )
http . Error ( w , errMsg , http . StatusTooEarly )
} else {
2020-11-13 08:25:39 +00:00
w . Header ( ) . Set ( "Content-Type" , "text/plain; charset=utf-8" )
2020-11-04 18:29:18 +00:00
w . WriteHeader ( http . StatusOK )
w . Write ( [ ] byte ( "OK" ) )
}
return true
2019-05-22 21:16:55 +00:00
default :
// This is not our link
return false
}
}
var (
2020-03-10 17:35:58 +00:00
prometheusWriteRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/api/v1/write", protocol="promremotewrite"} ` )
prometheusWriteErrors = metrics . NewCounter ( ` vm_http_request_errors_total { path="/api/v1/write", protocol="promremotewrite"} ` )
vmimportRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/api/v1/import", protocol="vmimport"} ` )
vmimportErrors = metrics . NewCounter ( ` vm_http_request_errors_total { path="/api/v1/import", protocol="vmimport"} ` )
2019-05-22 21:16:55 +00:00
2020-03-10 17:35:58 +00:00
csvimportRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/api/v1/import/csv", protocol="csvimport"} ` )
csvimportErrors = metrics . NewCounter ( ` vm_http_request_errors_total { path="/api/v1/import/csv", protocol="csvimport"} ` )
2019-12-09 18:58:19 +00:00
2020-07-10 09:00:35 +00:00
prometheusimportRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/api/v1/import/prometheus", protocol="prometheusimport"} ` )
prometheusimportErrors = metrics . NewCounter ( ` vm_http_request_errors_total { path="/api/v1/import/prometheus", protocol="prometheusimport"} ` )
2020-09-26 01:29:45 +00:00
nativeimportRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/api/v1/import/native", protocol="nativeimport"} ` )
nativeimportErrors = metrics . NewCounter ( ` vm_http_request_errors_total { path="/api/v1/import/native", protocol="nativeimport"} ` )
2019-05-22 21:16:55 +00:00
influxWriteRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/write", protocol="influx"} ` )
influxWriteErrors = metrics . NewCounter ( ` vm_http_request_errors_total { path="/write", protocol="influx"} ` )
influxQueryRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/query", protocol="influx"} ` )
2020-02-25 16:13:11 +00:00
2020-10-20 18:44:59 +00:00
promscrapeTargetsRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/targets"} ` )
promscrapeAPIV1TargetsRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/api/v1/targets"} ` )
2020-04-29 23:15:39 +00:00
promscrapeConfigReloadRequests = metrics . NewCounter ( ` vm_http_requests_total { path="/-/reload"} ` )
2020-06-18 22:10:18 +00:00
_ = metrics . NewGauge ( ` vm_metrics_with_dropped_labels_total ` , func ( ) float64 {
return float64 ( atomic . LoadUint64 ( & storage . MetricsWithDroppedLabels ) )
} )
_ = metrics . NewGauge ( ` vm_too_long_label_names_total ` , func ( ) float64 {
return float64 ( atomic . LoadUint64 ( & storage . TooLongLabelNames ) )
} )
_ = metrics . NewGauge ( ` vm_too_long_label_values_total ` , func ( ) float64 {
return float64 ( atomic . LoadUint64 ( & storage . TooLongLabelValues ) )
} )
2019-05-22 21:16:55 +00:00
)