mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
180 lines
4.1 KiB
Go
180 lines
4.1 KiB
Go
package providers
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"path"
|
|
"regexp"
|
|
"strconv"
|
|
"time"
|
|
|
|
flaggerv1 "github.com/weaveworks/flagger/pkg/apis/flagger/v1beta1"
|
|
)
|
|
|
|
// PrometheusProvider executes promQL queries
|
|
type PrometheusProvider struct {
|
|
timeout time.Duration
|
|
url url.URL
|
|
username string
|
|
password string
|
|
}
|
|
|
|
type prometheusResponse struct {
|
|
Data struct {
|
|
Result []struct {
|
|
Metric struct {
|
|
Name string `json:"name"`
|
|
}
|
|
Value []interface{} `json:"value"`
|
|
}
|
|
}
|
|
}
|
|
|
|
// NewPrometheusProvider takes a provider spec and the credentials map,
|
|
// validates the address, extracts the username and password values if provided and
|
|
// returns a Prometheus client ready to execute queries against the API
|
|
func NewPrometheusProvider(provider flaggerv1.MetricTemplateProvider, credentials map[string][]byte) (*PrometheusProvider, error) {
|
|
promURL, err := url.Parse(provider.Address)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%s address %s is not a valid URL", provider.Type, provider.Address)
|
|
}
|
|
|
|
prom := PrometheusProvider{
|
|
timeout: 5 * time.Second,
|
|
url: *promURL,
|
|
}
|
|
|
|
if provider.SecretRef != nil {
|
|
if username, ok := credentials["username"]; ok {
|
|
prom.username = string(username)
|
|
} else {
|
|
return nil, fmt.Errorf("%s credentials does not contain a username", provider.Type)
|
|
}
|
|
|
|
if password, ok := credentials["password"]; ok {
|
|
prom.password = string(password)
|
|
} else {
|
|
return nil, fmt.Errorf("%s credentials does not contain a password", provider.Type)
|
|
}
|
|
}
|
|
|
|
return &prom, nil
|
|
}
|
|
|
|
// RunQuery executes the promQL query and returns the the first result as float64
|
|
func (p *PrometheusProvider) RunQuery(query string) (float64, error) {
|
|
if p.url.String() == "fake" {
|
|
return 100, nil
|
|
}
|
|
|
|
query = url.QueryEscape(p.trimQuery(query))
|
|
u, err := url.Parse(fmt.Sprintf("./api/v1/query?query=%s", query))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
u.Path = path.Join(p.url.Path, u.Path)
|
|
|
|
u = p.url.ResolveReference(u)
|
|
|
|
req, err := http.NewRequest("GET", u.String(), nil)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
if p.username != "" && p.password != "" {
|
|
req.SetBasicAuth(p.username, p.password)
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(req.Context(), p.timeout)
|
|
defer cancel()
|
|
|
|
r, err := http.DefaultClient.Do(req.WithContext(ctx))
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
defer r.Body.Close()
|
|
|
|
b, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("error reading body: %s", err.Error())
|
|
}
|
|
|
|
if 400 <= r.StatusCode {
|
|
return 0, fmt.Errorf("error response: %s", string(b))
|
|
}
|
|
|
|
var result prometheusResponse
|
|
err = json.Unmarshal(b, &result)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("error unmarshaling result: %s, '%s'", err.Error(), string(b))
|
|
}
|
|
|
|
var value *float64
|
|
for _, v := range result.Data.Result {
|
|
metricValue := v.Value[1]
|
|
switch metricValue.(type) {
|
|
case string:
|
|
f, err := strconv.ParseFloat(metricValue.(string), 64)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
value = &f
|
|
}
|
|
}
|
|
if value == nil {
|
|
return 0, fmt.Errorf("no values found")
|
|
}
|
|
|
|
return *value, nil
|
|
}
|
|
|
|
// IsOnline calls the Prometheus status endpoint and returns an error if the API is unreachable
|
|
func (p *PrometheusProvider) IsOnline() (bool, error) {
|
|
u, err := url.Parse("./api/v1/status/flags")
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
u.Path = path.Join(p.url.Path, u.Path)
|
|
|
|
u = p.url.ResolveReference(u)
|
|
|
|
req, err := http.NewRequest("GET", u.String(), nil)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
if p.username != "" && p.password != "" {
|
|
req.SetBasicAuth(p.username, p.password)
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(req.Context(), p.timeout)
|
|
defer cancel()
|
|
|
|
r, err := http.DefaultClient.Do(req.WithContext(ctx))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer r.Body.Close()
|
|
|
|
b, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
return false, fmt.Errorf("error reading body: %s", err.Error())
|
|
}
|
|
|
|
if 400 <= r.StatusCode {
|
|
return false, fmt.Errorf("error response: %s", string(b))
|
|
}
|
|
|
|
return true, nil
|
|
}
|
|
|
|
// trimQuery takes a promql query and removes whitespace
|
|
func (p *PrometheusProvider) trimQuery(query string) string {
|
|
space := regexp.MustCompile(`\s+`)
|
|
return space.ReplaceAllString(query, " ")
|
|
}
|