2020-03-13 10:19:31 +00:00
|
|
|
package datasource
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
2020-09-21 12:53:49 +00:00
|
|
|
"time"
|
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
|
|
|
|
datasourceURL string
|
|
|
|
basicAuthUser string
|
|
|
|
basicAuthPass string
|
|
|
|
appendTypePrefix bool
|
|
|
|
lookBack time.Duration
|
|
|
|
queryStep time.Duration
|
2021-04-30 06:46:03 +00:00
|
|
|
|
|
|
|
dataSourceType Type
|
|
|
|
evaluationInterval time.Duration
|
2021-05-22 21:26:01 +00:00
|
|
|
extraLabels []string
|
2021-08-31 11:57:47 +00:00
|
|
|
extraParams []Param
|
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{
|
|
|
|
c: s.c,
|
|
|
|
datasourceURL: s.datasourceURL,
|
|
|
|
basicAuthUser: s.basicAuthUser,
|
|
|
|
basicAuthPass: s.basicAuthPass,
|
|
|
|
lookBack: s.lookBack,
|
|
|
|
queryStep: s.queryStep,
|
|
|
|
appendTypePrefix: s.appendTypePrefix,
|
|
|
|
dataSourceType: s.dataSourceType,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-05-22 21:26:01 +00:00
|
|
|
for k, v := range params.ExtraLabels {
|
|
|
|
s.extraLabels = append(s.extraLabels, fmt.Sprintf("%s=%s", k, v))
|
|
|
|
}
|
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
|
2021-02-03 21:26:30 +00:00
|
|
|
func NewVMStorage(baseURL, basicAuthUser, basicAuthPass string, lookBack time.Duration, queryStep time.Duration, appendTypePrefix bool, c *http.Client) *VMStorage {
|
2020-03-13 10:19:31 +00:00
|
|
|
return &VMStorage{
|
2021-02-03 21:26:30 +00:00
|
|
|
c: c,
|
|
|
|
basicAuthUser: basicAuthUser,
|
|
|
|
basicAuthPass: basicAuthPass,
|
|
|
|
datasourceURL: strings.TrimSuffix(baseURL, "/"),
|
|
|
|
appendTypePrefix: appendTypePrefix,
|
|
|
|
lookBack: lookBack,
|
|
|
|
queryStep: queryStep,
|
2021-04-28 20:41:15 +00:00
|
|
|
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
|
2021-04-28 20:41:15 +00:00
|
|
|
func (s *VMStorage) Query(ctx context.Context, query string) ([]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-06-09 09:20:38 +00:00
|
|
|
ts := time.Now()
|
|
|
|
switch s.dataSourceType.name {
|
|
|
|
case "", prometheusType:
|
|
|
|
s.setPrometheusInstantReqParams(req, query, ts)
|
|
|
|
case graphiteType:
|
|
|
|
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
|
|
|
|
if s.dataSourceType.name != prometheusType {
|
|
|
|
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) {
|
|
|
|
if s.dataSourceType.name != prometheusType {
|
|
|
|
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 {
|
2020-06-30 19:58:18 +00:00
|
|
|
return nil, fmt.Errorf("error getting response from %s: %w", req.URL, 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()
|
|
|
|
return nil, fmt.Errorf("unexpected response code %d for %s. Response body %s", resp.StatusCode, req.URL, 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-06-09 09:20:38 +00:00
|
|
|
req.Header.Set("Content-Type", "application/json; charset=utf-8")
|
|
|
|
if s.basicAuthPass != "" {
|
|
|
|
req.SetBasicAuth(s.basicAuthUser, s.basicAuthPass)
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|
2021-06-09 09:20:38 +00:00
|
|
|
return req, nil
|
2021-02-01 13:02:44 +00:00
|
|
|
}
|