prometheus/web/api/query.go

106 lines
2.7 KiB
Go
Raw Normal View History

// Copyright 2013 Prometheus Team
// 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.
package api
import (
"code.google.com/p/gorest"
"encoding/json"
2013-01-18 00:54:26 +00:00
"errors"
"github.com/prometheus/prometheus/rules"
"github.com/prometheus/prometheus/rules/ast"
"log"
"net/http"
2013-01-17 23:07:00 +00:00
"sort"
"time"
)
2013-03-18 09:18:35 +00:00
func (serv MetricsService) Query(expr string, formatJson string) (result string) {
exprNode, err := rules.LoadExprFromString(expr)
if err != nil {
2013-01-18 00:54:26 +00:00
return ast.ErrorToJSON(err)
}
timestamp := serv.time.Now()
rb := serv.ResponseBuilder()
var format ast.OutputFormat
2013-03-18 09:18:35 +00:00
if formatJson != "" {
format = ast.JSON
rb.SetContentType(gorest.Application_Json)
} else {
format = ast.TEXT
rb.SetContentType(gorest.Text_Plain)
}
return ast.EvalToString(exprNode, &timestamp, format)
}
2013-01-15 10:30:55 +00:00
2013-03-18 09:18:35 +00:00
func (serv MetricsService) QueryRange(expr string, end int64, duration int64, step int64) string {
exprNode, err := rules.LoadExprFromString(expr)
2013-01-15 10:30:55 +00:00
if err != nil {
2013-01-18 00:54:26 +00:00
return ast.ErrorToJSON(err)
2013-01-15 10:30:55 +00:00
}
2013-01-17 23:07:00 +00:00
if exprNode.Type() != ast.VECTOR {
2013-01-18 00:54:26 +00:00
return ast.ErrorToJSON(errors.New("Expression does not evaluate to vector type"))
2013-01-17 23:07:00 +00:00
}
2013-01-15 10:30:55 +00:00
rb := serv.ResponseBuilder()
2013-01-17 23:07:00 +00:00
rb.SetContentType(gorest.Application_Json)
2013-01-15 10:30:55 +00:00
2013-03-18 09:18:35 +00:00
if end == 0 {
end = serv.time.Now().Unix()
2013-01-17 23:07:00 +00:00
}
2013-01-15 10:30:55 +00:00
2013-03-18 09:18:35 +00:00
if step < 1 {
step = 1
2013-01-17 23:07:00 +00:00
}
2013-01-15 10:30:55 +00:00
2013-03-18 09:18:35 +00:00
if end-duration < 0 {
duration = end
2013-01-17 23:07:00 +00:00
}
2013-01-15 10:30:55 +00:00
2013-01-17 23:07:00 +00:00
// Align the start to step "tick" boundary.
2013-03-18 09:18:35 +00:00
end -= end % step
2013-01-15 10:30:55 +00:00
matrix, err := ast.EvalVectorRange(
2013-01-17 23:07:00 +00:00
exprNode.(ast.VectorNode),
2013-03-18 09:18:35 +00:00
time.Unix(end-duration, 0),
time.Unix(end, 0),
time.Duration(step)*time.Second)
if err != nil {
return ast.ErrorToJSON(err)
}
2013-01-15 10:30:55 +00:00
2013-01-17 23:07:00 +00:00
sort.Sort(matrix)
return ast.TypedValueToJSON(matrix, "matrix")
2013-01-15 10:30:55 +00:00
}
func (serv MetricsService) Metrics() string {
metricNames, err := serv.appState.Storage.GetAllMetricNames()
rb := serv.ResponseBuilder()
rb.SetContentType(gorest.Application_Json)
if err != nil {
log.Printf("Error loading metric names: %v", err)
rb.SetResponseCode(http.StatusInternalServerError)
return err.Error()
}
sort.Strings(metricNames)
resultBytes, err := json.Marshal(metricNames)
if err != nil {
log.Printf("Error marshalling metric names: %v", err)
rb.SetResponseCode(http.StatusInternalServerError)
return err.Error()
}
return string(resultBytes)
}