2020-03-13 10:19:31 +00:00
|
|
|
package datasource
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"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
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promauth"
|
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
|
|
|
|
|
|
|
dataSourceType Type
|
|
|
|
evaluationInterval time.Duration
|
2021-12-02 12:45:08 +00:00
|
|
|
extraParams url.Values
|
2022-07-21 13:59:55 +00:00
|
|
|
extraHeaders []Header
|
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 {
|
|
|
|
if params.DataSourceType != nil {
|
|
|
|
s.dataSourceType = *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-07-21 13:59:55 +00:00
|
|
|
s.extraHeaders = params.Headers
|
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,
|
|
|
|
dataSourceType: NewPrometheusType(),
|
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-03-29 13:09:07 +00:00
|
|
|
func (s *VMStorage) Query(ctx context.Context, query string, ts time.Time) ([]Metric, error) {
|
2021-06-09 09:20:38 +00:00
|
|
|
req, err := s.newRequestPOST()
|
2021-04-30 06:46:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-05 17:56:37 +00:00
|
|
|
switch s.dataSourceType.String() {
|
|
|
|
case "prometheus":
|
2021-06-09 09:20:38 +00:00
|
|
|
s.setPrometheusInstantReqParams(req, query, ts)
|
2021-11-05 17:56:37 +00:00
|
|
|
case "graphite":
|
2021-06-09 09:20:38 +00:00
|
|
|
s.setGraphiteReqParams(req, query, ts)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("engine not found: %q", s.dataSourceType.name)
|
|
|
|
}
|
|
|
|
|
2021-04-30 06:46:03 +00:00
|
|
|
resp, err := s.do(ctx, req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, 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
|
2021-11-05 17:56:37 +00:00
|
|
|
if s.dataSourceType.name != "prometheus" {
|
2021-04-30 06:46:03 +00:00
|
|
|
parseFn = parseGraphiteResponse
|
|
|
|
}
|
|
|
|
return parseFn(req, resp)
|
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) {
|
2021-11-05 17:56:37 +00:00
|
|
|
if s.dataSourceType.name != "prometheus" {
|
2021-06-09 09:20:38 +00:00
|
|
|
return nil, fmt.Errorf("%q is not supported for QueryRange", s.dataSourceType.name)
|
|
|
|
}
|
|
|
|
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) {
|
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 {
|
|
|
|
body, _ := ioutil.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 {
|
|
|
|
req.Header.Set(h.Key, h.Value)
|
|
|
|
}
|
2021-06-09 09:20:38 +00:00
|
|
|
return req, nil
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|