2020-03-13 10:19:31 +00:00
|
|
|
package datasource
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2022-08-21 21:13:44 +00:00
|
|
|
"io"
|
2020-03-13 10:19:31 +00:00
|
|
|
"net/http"
|
2021-12-02 12:45:08 +00:00
|
|
|
"net/url"
|
2020-03-13 10:19:31 +00:00
|
|
|
"strings"
|
2020-09-21 12:53:49 +00:00
|
|
|
"time"
|
2021-09-14 11:32:06 +00:00
|
|
|
|
2022-09-13 13:25:43 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
2021-09-14 11:32:06 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promauth"
|
2020-03-13 10:19:31 +00:00
|
|
|
)
|
|
|
|
|
2022-07-22 08:44:55 +00:00
|
|
|
type datasourceType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
datasourcePrometheus datasourceType = "prometheus"
|
|
|
|
datasourceGraphite datasourceType = "graphite"
|
|
|
|
)
|
|
|
|
|
|
|
|
func toDatasourceType(s string) datasourceType {
|
|
|
|
if s == string(datasourceGraphite) {
|
|
|
|
return datasourceGraphite
|
|
|
|
}
|
|
|
|
return datasourcePrometheus
|
|
|
|
}
|
|
|
|
|
2020-03-13 10:19:31 +00:00
|
|
|
// VMStorage represents vmstorage entity with ability to read and write metrics
|
|
|
|
type VMStorage struct {
|
2021-02-03 21:26:30 +00:00
|
|
|
c *http.Client
|
2021-09-14 11:32:06 +00:00
|
|
|
authCfg *promauth.Config
|
2021-02-03 21:26:30 +00:00
|
|
|
datasourceURL string
|
|
|
|
appendTypePrefix bool
|
|
|
|
lookBack time.Duration
|
|
|
|
queryStep time.Duration
|
2021-04-30 06:46:03 +00:00
|
|
|
|
2022-07-22 08:44:55 +00:00
|
|
|
dataSourceType datasourceType
|
2021-04-30 06:46:03 +00:00
|
|
|
evaluationInterval time.Duration
|
2021-12-02 12:45:08 +00:00
|
|
|
extraParams url.Values
|
2022-07-22 08:44:55 +00:00
|
|
|
extraHeaders []keyValue
|
2022-09-13 13:25:43 +00:00
|
|
|
|
|
|
|
// whether to print additional log messages
|
|
|
|
// for each sent request
|
|
|
|
debug bool
|
2022-07-22 08:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type keyValue struct {
|
|
|
|
key string
|
|
|
|
value string
|
2020-03-13 10:19:31 +00:00
|
|
|
}
|
|
|
|
|
2021-04-28 20:41:15 +00:00
|
|
|
// Clone makes clone of VMStorage, shares http client.
|
|
|
|
func (s *VMStorage) Clone() *VMStorage {
|
|
|
|
return &VMStorage{
|
2022-05-13 13:19:32 +00:00
|
|
|
c: s.c,
|
|
|
|
authCfg: s.authCfg,
|
|
|
|
datasourceURL: s.datasourceURL,
|
|
|
|
lookBack: s.lookBack,
|
|
|
|
queryStep: s.queryStep,
|
|
|
|
appendTypePrefix: s.appendTypePrefix,
|
|
|
|
dataSourceType: s.dataSourceType,
|
2021-04-28 20:41:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ApplyParams - changes given querier params.
|
|
|
|
func (s *VMStorage) ApplyParams(params QuerierParams) *VMStorage {
|
2022-07-22 08:44:55 +00:00
|
|
|
s.dataSourceType = toDatasourceType(params.DataSourceType)
|
2021-04-30 07:31:45 +00:00
|
|
|
s.evaluationInterval = params.EvaluationInterval
|
2021-12-02 12:45:08 +00:00
|
|
|
s.extraParams = params.QueryParams
|
2022-09-13 13:25:43 +00:00
|
|
|
s.debug = params.Debug
|
2022-07-22 08:44:55 +00:00
|
|
|
if params.Headers != nil {
|
|
|
|
for key, value := range params.Headers {
|
|
|
|
kv := keyValue{key: key, value: value}
|
|
|
|
s.extraHeaders = append(s.extraHeaders, kv)
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 20:41:15 +00:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// BuildWithParams - implements interface.
|
|
|
|
func (s *VMStorage) BuildWithParams(params QuerierParams) Querier {
|
|
|
|
return s.Clone().ApplyParams(params)
|
|
|
|
}
|
|
|
|
|
2020-03-13 10:19:31 +00:00
|
|
|
// NewVMStorage is a constructor for VMStorage
|
2022-05-13 13:19:32 +00:00
|
|
|
func NewVMStorage(baseURL string, authCfg *promauth.Config, lookBack time.Duration, queryStep time.Duration, appendTypePrefix bool, c *http.Client) *VMStorage {
|
2020-03-13 10:19:31 +00:00
|
|
|
return &VMStorage{
|
2022-05-13 13:19:32 +00:00
|
|
|
c: c,
|
|
|
|
authCfg: authCfg,
|
|
|
|
datasourceURL: strings.TrimSuffix(baseURL, "/"),
|
|
|
|
appendTypePrefix: appendTypePrefix,
|
|
|
|
lookBack: lookBack,
|
|
|
|
queryStep: queryStep,
|
2022-07-22 08:44:55 +00:00
|
|
|
dataSourceType: datasourcePrometheus,
|
2020-03-13 10:19:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-30 06:46:03 +00:00
|
|
|
// Query executes the given query and returns parsed response
|
2022-09-15 10:40:22 +00:00
|
|
|
func (s *VMStorage) Query(ctx context.Context, query string, ts time.Time) ([]Metric, *http.Request, error) {
|
2021-06-09 09:20:38 +00:00
|
|
|
req, err := s.newRequestPOST()
|
2021-04-30 06:46:03 +00:00
|
|
|
if err != nil {
|
2022-09-15 10:40:22 +00:00
|
|
|
return nil, nil, err
|
2021-04-30 06:46:03 +00:00
|
|
|
}
|
|
|
|
|
2022-07-22 08:44:55 +00:00
|
|
|
switch s.dataSourceType {
|
|
|
|
case "", datasourcePrometheus:
|
2021-06-09 09:20:38 +00:00
|
|
|
s.setPrometheusInstantReqParams(req, query, ts)
|
2022-07-22 08:44:55 +00:00
|
|
|
case datasourceGraphite:
|
2021-06-09 09:20:38 +00:00
|
|
|
s.setGraphiteReqParams(req, query, ts)
|
|
|
|
default:
|
2022-09-15 10:40:22 +00:00
|
|
|
return nil, nil, fmt.Errorf("engine not found: %q", s.dataSourceType)
|
2021-06-09 09:20:38 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 06:46:03 +00:00
|
|
|
resp, err := s.do(ctx, req)
|
|
|
|
if err != nil {
|
2022-09-15 10:40:22 +00:00
|
|
|
return nil, req, err
|
2021-01-26 08:12:04 +00:00
|
|
|
}
|
2021-04-30 06:54:36 +00:00
|
|
|
defer func() {
|
|
|
|
_ = resp.Body.Close()
|
|
|
|
}()
|
2021-04-30 06:46:03 +00:00
|
|
|
|
|
|
|
parseFn := parsePrometheusResponse
|
2022-07-22 08:44:55 +00:00
|
|
|
if s.dataSourceType != datasourcePrometheus {
|
2021-04-30 06:46:03 +00:00
|
|
|
parseFn = parseGraphiteResponse
|
|
|
|
}
|
2022-09-15 10:40:22 +00:00
|
|
|
result, err := parseFn(req, resp)
|
|
|
|
return result, req, err
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|
|
|
|
|
2021-06-09 09:20:38 +00:00
|
|
|
// QueryRange executes the given query on the given time range.
|
|
|
|
// For Prometheus type see https://prometheus.io/docs/prometheus/latest/querying/api/#range-queries
|
|
|
|
// Graphite type isn't supported.
|
|
|
|
func (s *VMStorage) QueryRange(ctx context.Context, query string, start, end time.Time) ([]Metric, error) {
|
2022-07-22 08:44:55 +00:00
|
|
|
if s.dataSourceType != datasourcePrometheus {
|
|
|
|
return nil, fmt.Errorf("%q is not supported for QueryRange", s.dataSourceType)
|
2021-06-09 09:20:38 +00:00
|
|
|
}
|
|
|
|
req, err := s.newRequestPOST()
|
2020-03-13 10:19:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-06-09 09:20:38 +00:00
|
|
|
if start.IsZero() {
|
|
|
|
return nil, fmt.Errorf("start param is missing")
|
2020-03-13 10:19:31 +00:00
|
|
|
}
|
2021-06-09 09:20:38 +00:00
|
|
|
if end.IsZero() {
|
|
|
|
return nil, fmt.Errorf("end param is missing")
|
2021-04-30 06:46:03 +00:00
|
|
|
}
|
2021-06-09 09:20:38 +00:00
|
|
|
s.setPrometheusRangeReqParams(req, query, start, end)
|
|
|
|
resp, err := s.do(ctx, req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
_ = resp.Body.Close()
|
|
|
|
}()
|
|
|
|
return parsePrometheusResponse(req, resp)
|
2021-04-30 06:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *VMStorage) do(ctx context.Context, req *http.Request) (*http.Response, error) {
|
2022-09-13 13:25:43 +00:00
|
|
|
if s.debug {
|
|
|
|
logger.Infof("DEBUG datasource request: executing %s request with params %q", req.Method, req.URL.RawQuery)
|
|
|
|
}
|
2020-03-13 10:19:31 +00:00
|
|
|
resp, err := s.c.Do(req.WithContext(ctx))
|
|
|
|
if err != nil {
|
2021-10-18 07:20:26 +00:00
|
|
|
return nil, fmt.Errorf("error getting response from %s: %w", req.URL.Redacted(), err)
|
2020-03-13 10:19:31 +00:00
|
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
2022-08-21 21:13:44 +00:00
|
|
|
body, _ := io.ReadAll(resp.Body)
|
2021-04-30 06:46:03 +00:00
|
|
|
_ = resp.Body.Close()
|
2021-10-18 07:20:26 +00:00
|
|
|
return nil, fmt.Errorf("unexpected response code %d for %s. Response body %s", resp.StatusCode, req.URL.Redacted(), body)
|
2020-03-13 10:19:31 +00:00
|
|
|
}
|
2021-04-30 06:46:03 +00:00
|
|
|
return resp, nil
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|
|
|
|
|
2021-06-09 09:20:38 +00:00
|
|
|
func (s *VMStorage) newRequestPOST() (*http.Request, error) {
|
|
|
|
req, err := http.NewRequest("POST", s.datasourceURL, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-03-13 10:19:31 +00:00
|
|
|
}
|
2021-11-09 16:03:50 +00:00
|
|
|
req.Header.Set("Content-Type", "application/json")
|
2021-09-14 11:32:06 +00:00
|
|
|
if s.authCfg != nil {
|
2022-06-22 17:38:43 +00:00
|
|
|
s.authCfg.SetHeaders(req, true)
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|
2022-07-21 13:59:55 +00:00
|
|
|
for _, h := range s.extraHeaders {
|
2022-07-22 08:44:55 +00:00
|
|
|
req.Header.Set(h.key, h.value)
|
2022-07-21 13:59:55 +00:00
|
|
|
}
|
2021-06-09 09:20:38 +00:00
|
|
|
return req, nil
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|