2015-01-21 19:07:45 +00:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-02-22 20:07:35 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-06-04 16:24:04 +00:00
|
|
|
package legacy
|
2013-01-11 01:27:03 +00:00
|
|
|
|
|
|
|
import (
|
2013-02-06 16:08:05 +00:00
|
|
|
"encoding/json"
|
2013-01-18 00:54:26 +00:00
|
|
|
"errors"
|
2013-10-22 18:31:52 +00:00
|
|
|
"fmt"
|
2015-07-02 17:12:04 +00:00
|
|
|
"io"
|
2013-02-07 10:38:01 +00:00
|
|
|
"net/http"
|
2015-07-02 17:12:04 +00:00
|
|
|
"net/url"
|
2013-01-17 23:07:00 +00:00
|
|
|
"sort"
|
2013-10-22 18:31:52 +00:00
|
|
|
"strconv"
|
2013-01-12 20:22:59 +00:00
|
|
|
"time"
|
2013-06-25 12:02:27 +00:00
|
|
|
|
2015-10-03 08:21:43 +00:00
|
|
|
"github.com/prometheus/common/log"
|
2015-08-20 15:18:46 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2013-01-11 01:27:03 +00:00
|
|
|
)
|
2013-01-12 20:22:59 +00:00
|
|
|
|
2013-10-22 18:31:52 +00:00
|
|
|
// Enables cross-site script calls.
|
|
|
|
func setAccessControlHeaders(w http.ResponseWriter) {
|
|
|
|
w.Header().Set("Access-Control-Allow-Headers", "Accept, Authorization, Content-Type, Origin")
|
2016-01-26 00:32:46 +00:00
|
|
|
w.Header().Set("Access-Control-Allow-Methods", "GET, OPTIONS")
|
2013-10-22 18:31:52 +00:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
|
|
w.Header().Set("Access-Control-Expose-Headers", "Date")
|
2013-04-11 12:51:42 +00:00
|
|
|
}
|
|
|
|
|
2015-03-27 15:48:03 +00:00
|
|
|
func httpJSONError(w http.ResponseWriter, err error, code int) {
|
|
|
|
w.WriteHeader(code)
|
2015-07-02 17:12:04 +00:00
|
|
|
errorJSON(w, err)
|
2015-03-27 15:48:03 +00:00
|
|
|
}
|
|
|
|
|
2015-08-20 15:18:46 +00:00
|
|
|
func parseTimestampOrNow(t string, now model.Time) (model.Time, error) {
|
2015-03-21 15:58:45 +00:00
|
|
|
if t == "" {
|
2015-03-27 22:43:47 +00:00
|
|
|
return now, nil
|
2015-03-21 15:58:45 +00:00
|
|
|
}
|
2015-03-21 16:54:30 +00:00
|
|
|
|
|
|
|
tFloat, err := strconv.ParseFloat(t, 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2015-08-20 15:18:46 +00:00
|
|
|
return model.TimeFromUnixNano(int64(tFloat * float64(time.Second/time.Nanosecond))), nil
|
2015-03-21 15:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func parseDuration(d string) (time.Duration, error) {
|
|
|
|
dFloat, err := strconv.ParseFloat(d, 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2015-03-21 16:50:45 +00:00
|
|
|
return time.Duration(dFloat * float64(time.Second/time.Nanosecond)), nil
|
2015-03-21 15:58:45 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 00:32:46 +00:00
|
|
|
// Options handles OPTIONS requests to /api/... endpoints.
|
|
|
|
func (api *API) Options(w http.ResponseWriter, r *http.Request) {
|
|
|
|
setAccessControlHeaders(w)
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
}
|
|
|
|
|
2014-12-10 15:16:49 +00:00
|
|
|
// Query handles the /api/query endpoint.
|
2015-06-04 16:24:04 +00:00
|
|
|
func (api *API) Query(w http.ResponseWriter, r *http.Request) {
|
2013-10-22 18:31:52 +00:00
|
|
|
setAccessControlHeaders(w)
|
2015-03-27 15:48:03 +00:00
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2013-10-16 13:59:47 +00:00
|
|
|
|
2015-07-02 17:12:04 +00:00
|
|
|
params := getQueryParams(r)
|
2013-10-22 18:31:52 +00:00
|
|
|
expr := params.Get("expr")
|
2015-03-20 22:10:58 +00:00
|
|
|
|
2015-06-04 16:24:04 +00:00
|
|
|
timestamp, err := parseTimestampOrNow(params.Get("timestamp"), api.Now())
|
2015-03-21 15:58:45 +00:00
|
|
|
if err != nil {
|
2015-03-27 15:48:03 +00:00
|
|
|
httpJSONError(w, fmt.Errorf("invalid query timestamp %s", err), http.StatusBadRequest)
|
2015-03-21 15:58:45 +00:00
|
|
|
return
|
2015-03-20 22:10:58 +00:00
|
|
|
}
|
2013-01-11 01:27:03 +00:00
|
|
|
|
2015-06-04 16:24:04 +00:00
|
|
|
query, err := api.QueryEngine.NewInstantQuery(expr, timestamp)
|
2013-10-22 18:31:52 +00:00
|
|
|
if err != nil {
|
2015-03-30 17:43:19 +00:00
|
|
|
httpJSONError(w, err, http.StatusOK)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
res := query.Exec()
|
|
|
|
if res.Err != nil {
|
|
|
|
httpJSONError(w, res.Err, http.StatusOK)
|
2013-10-22 18:31:52 +00:00
|
|
|
return
|
2013-01-12 20:22:59 +00:00
|
|
|
}
|
2015-05-20 16:10:29 +00:00
|
|
|
log.Debugf("Instant query: %s\nQuery stats:\n%s\n", expr, query.Stats())
|
2013-01-11 02:17:58 +00:00
|
|
|
|
2015-08-24 16:04:41 +00:00
|
|
|
if vec, ok := res.Value.(model.Vector); ok {
|
2015-07-02 17:12:04 +00:00
|
|
|
respondJSON(w, plainVec(vec))
|
|
|
|
return
|
|
|
|
}
|
2015-08-24 16:04:41 +00:00
|
|
|
if sca, ok := res.Value.(*model.Scalar); ok {
|
2015-07-06 08:14:59 +00:00
|
|
|
respondJSON(w, (*plainScalar)(sca))
|
|
|
|
return
|
|
|
|
}
|
2015-08-24 16:04:41 +00:00
|
|
|
if str, ok := res.Value.(*model.String); ok {
|
2015-07-06 08:14:59 +00:00
|
|
|
respondJSON(w, (*plainString)(str))
|
|
|
|
return
|
|
|
|
}
|
2015-07-02 17:12:04 +00:00
|
|
|
|
|
|
|
respondJSON(w, res.Value)
|
|
|
|
}
|
|
|
|
|
2015-07-06 08:14:59 +00:00
|
|
|
// plainVec is an indirection that hides the original MarshalJSON method
|
2015-07-02 17:12:04 +00:00
|
|
|
// which does not fit the response format for the legacy API.
|
2015-08-24 16:04:41 +00:00
|
|
|
type plainVec model.Vector
|
2015-07-02 17:12:04 +00:00
|
|
|
|
|
|
|
func (pv plainVec) MarshalJSON() ([]byte, error) {
|
2015-08-24 16:04:41 +00:00
|
|
|
type plainSmpl model.Sample
|
2015-07-02 17:12:04 +00:00
|
|
|
|
|
|
|
v := make([]*plainSmpl, len(pv))
|
|
|
|
for i, sv := range pv {
|
|
|
|
v[i] = (*plainSmpl)(sv)
|
|
|
|
}
|
|
|
|
|
|
|
|
return json.Marshal(&v)
|
|
|
|
}
|
|
|
|
|
2015-08-24 16:04:41 +00:00
|
|
|
func (pv plainVec) Type() model.ValueType {
|
|
|
|
return model.ValVector
|
2015-07-02 17:12:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pv plainVec) String() string {
|
|
|
|
return ""
|
2013-01-11 01:27:03 +00:00
|
|
|
}
|
2013-01-15 10:30:55 +00:00
|
|
|
|
2015-07-06 08:14:59 +00:00
|
|
|
// plainScalar is an indirection that hides the original MarshalJSON method
|
|
|
|
// which does not fit the response format for the legacy API.
|
2015-08-24 16:04:41 +00:00
|
|
|
type plainScalar model.Scalar
|
2015-07-06 08:14:59 +00:00
|
|
|
|
2015-07-16 17:27:56 +00:00
|
|
|
func (ps plainScalar) MarshalJSON() ([]byte, error) {
|
|
|
|
s := strconv.FormatFloat(float64(ps.Value), 'f', -1, 64)
|
|
|
|
return json.Marshal(&s)
|
|
|
|
}
|
|
|
|
|
2015-08-24 16:04:41 +00:00
|
|
|
func (plainScalar) Type() model.ValueType {
|
|
|
|
return model.ValScalar
|
2015-07-06 08:14:59 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 17:27:56 +00:00
|
|
|
func (plainScalar) String() string {
|
2015-07-06 08:14:59 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// plainString is an indirection that hides the original MarshalJSON method
|
|
|
|
// which does not fit the response format for the legacy API.
|
2015-08-24 16:04:41 +00:00
|
|
|
type plainString model.String
|
2015-07-06 08:14:59 +00:00
|
|
|
|
2015-08-24 16:04:41 +00:00
|
|
|
func (pv plainString) Type() model.ValueType {
|
|
|
|
return model.ValString
|
2015-07-06 08:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pv plainString) String() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2014-12-10 15:16:49 +00:00
|
|
|
// QueryRange handles the /api/query_range endpoint.
|
2015-06-04 16:24:04 +00:00
|
|
|
func (api *API) QueryRange(w http.ResponseWriter, r *http.Request) {
|
2013-10-22 18:31:52 +00:00
|
|
|
setAccessControlHeaders(w)
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
2015-07-02 17:12:04 +00:00
|
|
|
params := getQueryParams(r)
|
2013-10-22 18:31:52 +00:00
|
|
|
expr := params.Get("expr")
|
2014-10-20 12:51:39 +00:00
|
|
|
|
2015-03-21 15:58:45 +00:00
|
|
|
duration, err := parseDuration(params.Get("range"))
|
2013-01-15 10:30:55 +00:00
|
|
|
if err != nil {
|
2015-03-27 15:48:03 +00:00
|
|
|
httpJSONError(w, fmt.Errorf("invalid query range: %s", err), http.StatusBadRequest)
|
2013-10-22 18:31:52 +00:00
|
|
|
return
|
2013-01-15 10:30:55 +00:00
|
|
|
}
|
2015-03-21 15:58:45 +00:00
|
|
|
|
|
|
|
step, err := parseDuration(params.Get("step"))
|
|
|
|
if err != nil {
|
2015-03-27 15:48:03 +00:00
|
|
|
httpJSONError(w, fmt.Errorf("invalid query resolution: %s", err), http.StatusBadRequest)
|
2013-10-22 18:31:52 +00:00
|
|
|
return
|
2013-01-17 23:07:00 +00:00
|
|
|
}
|
2013-01-15 10:30:55 +00:00
|
|
|
|
2015-06-04 16:24:04 +00:00
|
|
|
end, err := parseTimestampOrNow(params.Get("end"), api.Now())
|
2015-03-21 15:58:45 +00:00
|
|
|
if err != nil {
|
2015-03-27 15:48:03 +00:00
|
|
|
httpJSONError(w, fmt.Errorf("invalid query timestamp: %s", err), http.StatusBadRequest)
|
2015-03-21 15:58:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// TODO(julius): Remove this special-case handling a while after PromDash and
|
|
|
|
// other API consumers have been changed to no longer set "end=0" for setting
|
|
|
|
// the current time as the end time. Instead, the "end" parameter should
|
|
|
|
// simply be omitted or set to an empty string for that case.
|
2013-03-18 09:18:35 +00:00
|
|
|
if end == 0 {
|
2015-06-04 16:24:04 +00:00
|
|
|
end = api.Now()
|
2013-01-17 23:07:00 +00:00
|
|
|
}
|
2013-01-15 10:30:55 +00:00
|
|
|
|
2014-10-20 12:51:39 +00:00
|
|
|
// For safety, limit the number of returned points per timeseries.
|
|
|
|
// This is sufficient for 60s resolution for a week or 1h resolution for a year.
|
|
|
|
if duration/step > 11000 {
|
2015-03-30 17:43:19 +00:00
|
|
|
err := errors.New("exceeded maximum resolution of 11,000 points per timeseries. Try decreasing the query resolution (?step=XX)")
|
|
|
|
httpJSONError(w, err, http.StatusBadRequest)
|
2014-10-20 12:51:39 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-01-17 23:07:00 +00:00
|
|
|
// Align the start to step "tick" boundary.
|
2015-03-21 15:58:45 +00:00
|
|
|
end = end.Add(-time.Duration(end.UnixNano() % int64(step)))
|
2015-03-30 17:43:19 +00:00
|
|
|
start := end.Add(-duration)
|
2013-01-15 10:30:55 +00:00
|
|
|
|
2015-06-04 16:24:04 +00:00
|
|
|
query, err := api.QueryEngine.NewRangeQuery(expr, start, end, step)
|
2013-03-21 17:06:15 +00:00
|
|
|
if err != nil {
|
2015-03-30 17:43:19 +00:00
|
|
|
httpJSONError(w, err, http.StatusOK)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
matrix, err := query.Exec().Matrix()
|
|
|
|
if err != nil {
|
|
|
|
httpJSONError(w, err, http.StatusOK)
|
2013-10-22 18:31:52 +00:00
|
|
|
return
|
2013-03-21 17:06:15 +00:00
|
|
|
}
|
2013-01-15 10:30:55 +00:00
|
|
|
|
2015-05-20 16:10:29 +00:00
|
|
|
log.Debugf("Range query: %s\nQuery stats:\n%s\n", expr, query.Stats())
|
2015-07-02 17:12:04 +00:00
|
|
|
respondJSON(w, matrix)
|
2013-01-15 10:30:55 +00:00
|
|
|
}
|
2013-02-06 16:08:05 +00:00
|
|
|
|
2014-12-10 16:46:56 +00:00
|
|
|
// Metrics handles the /api/metrics endpoint.
|
2015-06-04 16:24:04 +00:00
|
|
|
func (api *API) Metrics(w http.ResponseWriter, r *http.Request) {
|
2013-10-22 18:31:52 +00:00
|
|
|
setAccessControlHeaders(w)
|
2015-03-27 15:48:03 +00:00
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2013-10-16 13:59:47 +00:00
|
|
|
|
2015-08-20 15:18:46 +00:00
|
|
|
metricNames := api.Storage.LabelValuesForLabelName(model.MetricNameLabel)
|
2013-03-26 10:45:56 +00:00
|
|
|
sort.Sort(metricNames)
|
2013-02-06 16:08:05 +00:00
|
|
|
resultBytes, err := json.Marshal(metricNames)
|
|
|
|
if err != nil {
|
2015-05-20 16:10:29 +00:00
|
|
|
log.Error("Error marshalling metric names: ", err)
|
2015-08-24 13:07:27 +00:00
|
|
|
httpJSONError(w, fmt.Errorf("error marshalling metric names: %s", err), http.StatusInternalServerError)
|
2013-10-22 18:31:52 +00:00
|
|
|
return
|
2013-02-06 16:08:05 +00:00
|
|
|
}
|
2013-10-22 18:31:52 +00:00
|
|
|
w.Write(resultBytes)
|
2013-02-06 16:08:05 +00:00
|
|
|
}
|
2015-07-02 17:12:04 +00:00
|
|
|
|
|
|
|
// GetQueryParams calls r.ParseForm and returns r.Form.
|
|
|
|
func getQueryParams(r *http.Request) url.Values {
|
|
|
|
r.ParseForm()
|
|
|
|
return r.Form
|
|
|
|
}
|
|
|
|
|
|
|
|
var jsonFormatVersion = 1
|
|
|
|
|
|
|
|
// ErrorJSON writes the given error JSON-formatted to w.
|
|
|
|
func errorJSON(w io.Writer, err error) error {
|
|
|
|
data := struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
Version int `json:"version"`
|
|
|
|
}{
|
|
|
|
Type: "error",
|
|
|
|
Value: err.Error(),
|
|
|
|
Version: jsonFormatVersion,
|
|
|
|
}
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
return enc.Encode(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RespondJSON converts the given data value to JSON and writes it to w.
|
2015-08-24 16:04:41 +00:00
|
|
|
func respondJSON(w io.Writer, val model.Value) error {
|
2015-07-02 17:12:04 +00:00
|
|
|
data := struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Value interface{} `json:"value"`
|
|
|
|
Version int `json:"version"`
|
|
|
|
}{
|
|
|
|
Type: val.Type().String(),
|
|
|
|
Value: val,
|
|
|
|
Version: jsonFormatVersion,
|
|
|
|
}
|
|
|
|
// TODO(fabxc): Adding MarshalJSON to promql.Values might be a good idea.
|
2015-08-24 16:04:41 +00:00
|
|
|
if sc, ok := val.(*model.Scalar); ok {
|
2015-07-02 17:12:04 +00:00
|
|
|
data.Value = sc.Value
|
|
|
|
}
|
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
return enc.Encode(data)
|
|
|
|
}
|