mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
219 lines
5.8 KiB
Go
219 lines
5.8 KiB
Go
// Copyright 2016 The Prometheus Authors
|
|
// 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 remote
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
"github.com/golang/snappy"
|
|
"github.com/prometheus/common/model"
|
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
|
"github.com/prometheus/prometheus/prompb"
|
|
)
|
|
|
|
// DecodeReadRequest reads a remote.Request from a http.Request.
|
|
func DecodeReadRequest(r *http.Request) (*prompb.ReadRequest, error) {
|
|
compressed, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
reqBuf, err := snappy.Decode(nil, compressed)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var req prompb.ReadRequest
|
|
if err := proto.Unmarshal(reqBuf, &req); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &req, nil
|
|
}
|
|
|
|
// EncodeReadResponse writes a remote.Response to a http.ResponseWriter.
|
|
func EncodeReadResponse(resp *prompb.ReadResponse, w http.ResponseWriter) error {
|
|
data, err := proto.Marshal(resp)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/x-protobuf")
|
|
w.Header().Set("Content-Encoding", "snappy")
|
|
|
|
compressed := snappy.Encode(nil, data)
|
|
_, err = w.Write(compressed)
|
|
return err
|
|
}
|
|
|
|
// ToWriteRequest converts an array of samples into a WriteRequest proto.
|
|
func ToWriteRequest(samples []*model.Sample) *prompb.WriteRequest {
|
|
req := &prompb.WriteRequest{
|
|
Timeseries: make([]*prompb.TimeSeries, 0, len(samples)),
|
|
}
|
|
|
|
for _, s := range samples {
|
|
ts := prompb.TimeSeries{
|
|
Labels: ToLabelPairs(s.Metric),
|
|
Samples: []*prompb.Sample{
|
|
{
|
|
Value: float64(s.Value),
|
|
Timestamp: int64(s.Timestamp),
|
|
},
|
|
},
|
|
}
|
|
req.Timeseries = append(req.Timeseries, &ts)
|
|
}
|
|
|
|
return req
|
|
}
|
|
|
|
// ToQuery builds a Query proto.
|
|
func ToQuery(from, to int64, matchers []*labels.Matcher) (*prompb.Query, error) {
|
|
ms, err := toLabelMatchers(matchers)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &prompb.Query{
|
|
StartTimestampMs: from,
|
|
EndTimestampMs: to,
|
|
Matchers: ms,
|
|
}, nil
|
|
}
|
|
|
|
// FromQuery unpacks a Query proto.
|
|
func FromQuery(req *prompb.Query) (model.Time, model.Time, []*labels.Matcher, error) {
|
|
matchers, err := fromLabelMatchers(req.Matchers)
|
|
if err != nil {
|
|
return 0, 0, nil, err
|
|
}
|
|
from := model.Time(req.StartTimestampMs)
|
|
to := model.Time(req.EndTimestampMs)
|
|
return from, to, matchers, nil
|
|
}
|
|
|
|
// ToQueryResult builds a QueryResult proto.
|
|
func ToQueryResult(matrix model.Matrix) *prompb.QueryResult {
|
|
resp := &prompb.QueryResult{}
|
|
for _, ss := range matrix {
|
|
ts := prompb.TimeSeries{
|
|
Labels: ToLabelPairs(ss.Metric),
|
|
Samples: make([]*prompb.Sample, 0, len(ss.Values)),
|
|
}
|
|
for _, s := range ss.Values {
|
|
ts.Samples = append(ts.Samples, &prompb.Sample{
|
|
Value: float64(s.Value),
|
|
Timestamp: int64(s.Timestamp),
|
|
})
|
|
}
|
|
resp.Timeseries = append(resp.Timeseries, &ts)
|
|
}
|
|
return resp
|
|
}
|
|
|
|
// FromQueryResult unpacks a QueryResult proto.
|
|
func FromQueryResult(resp *prompb.QueryResult) model.Matrix {
|
|
m := make(model.Matrix, 0, len(resp.Timeseries))
|
|
for _, ts := range resp.Timeseries {
|
|
var ss model.SampleStream
|
|
ss.Metric = FromLabelPairs(ts.Labels)
|
|
ss.Values = make([]model.SamplePair, 0, len(ts.Samples))
|
|
for _, s := range ts.Samples {
|
|
ss.Values = append(ss.Values, model.SamplePair{
|
|
Value: model.SampleValue(s.Value),
|
|
Timestamp: model.Time(s.Timestamp),
|
|
})
|
|
}
|
|
m = append(m, &ss)
|
|
}
|
|
|
|
return m
|
|
}
|
|
|
|
func toLabelMatchers(matchers []*labels.Matcher) ([]*prompb.LabelMatcher, error) {
|
|
pbMatchers := make([]*prompb.LabelMatcher, 0, len(matchers))
|
|
for _, m := range matchers {
|
|
var mType prompb.LabelMatcher_Type
|
|
switch m.Type {
|
|
case labels.MatchEqual:
|
|
mType = prompb.LabelMatcher_EQ
|
|
case labels.MatchNotEqual:
|
|
mType = prompb.LabelMatcher_NEQ
|
|
case labels.MatchRegexp:
|
|
mType = prompb.LabelMatcher_RE
|
|
case labels.MatchNotRegexp:
|
|
mType = prompb.LabelMatcher_NRE
|
|
default:
|
|
return nil, fmt.Errorf("invalid matcher type")
|
|
}
|
|
pbMatchers = append(pbMatchers, &prompb.LabelMatcher{
|
|
Type: mType,
|
|
Name: m.Name,
|
|
Value: m.Value,
|
|
})
|
|
}
|
|
return pbMatchers, nil
|
|
}
|
|
|
|
func fromLabelMatchers(matchers []*prompb.LabelMatcher) ([]*labels.Matcher, error) {
|
|
result := make([]*labels.Matcher, 0, len(matchers))
|
|
for _, matcher := range matchers {
|
|
var mtype labels.MatchType
|
|
switch matcher.Type {
|
|
case prompb.LabelMatcher_EQ:
|
|
mtype = labels.MatchEqual
|
|
case prompb.LabelMatcher_NEQ:
|
|
mtype = labels.MatchNotEqual
|
|
case prompb.LabelMatcher_RE:
|
|
mtype = labels.MatchRegexp
|
|
case prompb.LabelMatcher_NRE:
|
|
mtype = labels.MatchNotRegexp
|
|
default:
|
|
return nil, fmt.Errorf("invalid matcher type")
|
|
}
|
|
matcher, err := labels.NewMatcher(mtype, matcher.Name, matcher.Value)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result = append(result, matcher)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// ToLabelPairs builds a []LabelPair from a model.Metric
|
|
func ToLabelPairs(metric model.Metric) []*prompb.Label {
|
|
labelPairs := make([]*prompb.Label, 0, len(metric))
|
|
for k, v := range metric {
|
|
labelPairs = append(labelPairs, &prompb.Label{
|
|
Name: string(k),
|
|
Value: string(v),
|
|
})
|
|
}
|
|
return labelPairs
|
|
}
|
|
|
|
// FromLabelPairs unpack a []LabelPair to a model.Metric
|
|
func FromLabelPairs(labelPairs []*prompb.Label) model.Metric {
|
|
metric := make(model.Metric, len(labelPairs))
|
|
for _, l := range labelPairs {
|
|
metric[model.LabelName(l.Name)] = model.LabelValue(l.Value)
|
|
}
|
|
return metric
|
|
}
|