mirror of
https://github.com/prometheus/prometheus.git
synced 2026-02-22 01:13:22 -05:00
- Remove unrelated changes - Refactor code out of the API module - that is already getting pretty crowded. - Don't track reference for AddFast in remote write. This has the potential to consume unlimited server-side memory if a malicious client pushes a different label set for every series. For now, its easier and safer to always use the 'slow' path. - Return 400 on out of order samples. - Use remote.DecodeWriteRequest in the remote write adapters. - Put this behing the 'remote-write-server' feature flag - Add some (very) basic docs. - Used named return & add test for commit error propagation Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
48 lines
1.3 KiB
Go
48 lines
1.3 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/prometheus/common/model"
|
|
|
|
"github.com/prometheus/prometheus/storage/remote"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/receive", func(w http.ResponseWriter, r *http.Request) {
|
|
req, err := remote.DecodeWriteRequest(r.Body)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
for _, ts := range req.Timeseries {
|
|
m := make(model.Metric, len(ts.Labels))
|
|
for _, l := range ts.Labels {
|
|
m[model.LabelName(l.Name)] = model.LabelValue(l.Value)
|
|
}
|
|
fmt.Println(m)
|
|
|
|
for _, s := range ts.Samples {
|
|
fmt.Printf(" %f %d\n", s.Value, s.Timestamp)
|
|
}
|
|
}
|
|
})
|
|
|
|
log.Fatal(http.ListenAndServe(":1234", nil))
|
|
}
|