forked from timescale/prometheus-postgresql-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
326 lines (277 loc) · 9.15 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
// Copyright 2017 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.
// The main package for the Prometheus server executable.
package main
// Based on the Prometheus remote storage example:
// documentation/examples/remote_storage/remote_storage_adapter/main.go
import (
"flag"
"io/ioutil"
"net/http"
_ "net/http/pprof"
"os"
"time"
"github.com/timescale/prometheus-postgresql-adapter/log"
"github.com/timescale/prometheus-postgresql-adapter/postgresql"
"github.com/timescale/prometheus-postgresql-adapter/util"
"github.com/gogo/protobuf/proto"
"github.com/golang/snappy"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/model"
"github.com/prometheus/client_model/go"
"github.com/prometheus/prometheus/prompb"
)
type config struct {
remoteTimeout time.Duration
listenAddr string
telemetryPath string
pgPrometheusConfig pgprometheus.Config
logLevel string
readOnly bool
}
const (
tickInterval = time.Second
)
var (
receivedSamples = prometheus.NewCounter(
prometheus.CounterOpts{
Name: "received_samples_total",
Help: "Total number of received samples.",
},
)
sentSamples = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "sent_samples_total",
Help: "Total number of processed samples sent to remote storage.",
},
[]string{"remote"},
)
failedSamples = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "failed_samples_total",
Help: "Total number of processed samples which failed on send to remote storage.",
},
[]string{"remote"},
)
sentBatchDuration = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Name: "sent_batch_duration_seconds",
Help: "Duration of sample batch send calls to the remote storage.",
Buckets: prometheus.DefBuckets,
},
[]string{"remote"},
)
httpRequestDuration = prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Name: "http_request_duration_ms",
Help: "Duration of HTTP request in milliseconds",
Buckets: prometheus.DefBuckets,
},
[]string{"path"},
)
writeThroughtput = util.NewThroughputCalc(tickInterval)
)
func init() {
prometheus.MustRegister(receivedSamples)
prometheus.MustRegister(sentSamples)
prometheus.MustRegister(failedSamples)
prometheus.MustRegister(sentBatchDuration)
prometheus.MustRegister(httpRequestDuration)
writeThroughtput.Start()
}
func main() {
cfg := parseFlags()
http.Handle(cfg.telemetryPath, prometheus.Handler())
log.Init(cfg.logLevel)
writer, reader := buildClients(cfg)
http.Handle("/write", timeHandler("write", write(writer)))
http.Handle("/read", timeHandler("read", read(reader)))
http.Handle("/healthz", health(reader))
log.Info("msg", "Starting up...")
log.Info("msg", "Listening", "addr", cfg.listenAddr)
err := http.ListenAndServe(cfg.listenAddr, nil)
if err != nil {
log.Error("msg", "Listen failure", "err", err)
os.Exit(1)
}
}
func parseFlags() *config {
cfg := &config{}
pgprometheus.ParseFlags(&cfg.pgPrometheusConfig)
flag.DurationVar(&cfg.remoteTimeout, "adapter.send-timeout", 30*time.Second, "The timeout to use when sending samples to the remote storage.")
flag.StringVar(&cfg.listenAddr, "web.listen-address", ":9201", "Address to listen on for web endpoints.")
flag.StringVar(&cfg.telemetryPath, "web.telemetry-path", "/metrics", "Address to listen on for web endpoints.")
flag.StringVar(&cfg.logLevel, "log.level", "debug", "The log level to use [ \"error\", \"warn\", \"info\", \"debug\" ].")
flag.BoolVar(&cfg.readOnly, "read.only", false, "Read-only mode. Don't write to database.")
flag.Parse()
return cfg
}
type writer interface {
Write(samples model.Samples) error
Name() string
}
type noOpWriter struct{}
func (no *noOpWriter) Write(samples model.Samples) error {
log.Debug("msg", "Noop writer", "num_samples", len(samples))
return nil
}
func (no *noOpWriter) Name() string {
return "noopWriter"
}
type reader interface {
Read(req *prompb.ReadRequest) (*prompb.ReadResponse, error)
Name() string
HealthCheck() error
}
func buildClients(cfg *config) (writer, reader) {
pgClient := pgprometheus.NewClient(&cfg.pgPrometheusConfig)
if cfg.readOnly {
return &noOpWriter{}, pgClient
}
return pgClient, pgClient
}
func write(writer writer) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
compressed, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Error("msg", "Read error", "err", err.Error())
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
reqBuf, err := snappy.Decode(nil, compressed)
if err != nil {
log.Error("msg", "Decode error", "err", err.Error())
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
var req prompb.WriteRequest
if err := proto.Unmarshal(reqBuf, &req); err != nil {
log.Error("msg", "Unmarshal error", "err", err.Error())
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
samples := protoToSamples(&req)
receivedSamples.Add(float64(len(samples)))
err = sendSamples(writer, samples)
if err != nil {
log.Warn("msg", "Error sending samples to remote storage", "err", err, "storage", writer.Name(), "num_samples", len(samples))
}
counter, err := sentSamples.GetMetricWithLabelValues(writer.Name())
if err != nil {
log.Warn("msg", "Couldn't get a counter", "labelValue", writer.Name(), "err", err)
}
writeThroughtput.SetCurrent(getCounterValue(counter))
select {
case d := <-writeThroughtput.Values:
log.Info("msg", "Samples write throughput", "samples/sec", d)
default:
}
})
}
func getCounterValue(counter prometheus.Counter) float64 {
dtoMetric := &io_prometheus_client.Metric{}
if err := counter.Write(dtoMetric); err != nil {
log.Warn("msg", "Error reading counter value", "err", err, "sentSamples", sentSamples)
}
return dtoMetric.GetCounter().GetValue()
}
func read(reader reader) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
compressed, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Error("msg", "Read error", "err", err.Error())
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
reqBuf, err := snappy.Decode(nil, compressed)
if err != nil {
log.Error("msg", "Decode error", "err", err.Error())
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
var req prompb.ReadRequest
if err := proto.Unmarshal(reqBuf, &req); err != nil {
log.Error("msg", "Unmarshal error", "err", err.Error())
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
var resp *prompb.ReadResponse
resp, err = reader.Read(&req)
if err != nil {
log.Warn("msg", "Error executing query", "query", req, "storage", reader.Name(), "err", err)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
data, err := proto.Marshal(resp)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/x-protobuf")
w.Header().Set("Content-Encoding", "snappy")
compressed = snappy.Encode(nil, data)
if _, err := w.Write(compressed); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
}
func health(reader reader) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
err := reader.HealthCheck()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Set("Content-Length", "0")
})
}
func protoToSamples(req *prompb.WriteRequest) model.Samples {
var samples model.Samples
for _, ts := range req.Timeseries {
metric := make(model.Metric, len(ts.Labels))
for _, l := range ts.Labels {
metric[model.LabelName(l.Name)] = model.LabelValue(l.Value)
}
for _, s := range ts.Samples {
samples = append(samples, &model.Sample{
Metric: metric,
Value: model.SampleValue(s.Value),
Timestamp: model.Time(s.Timestamp),
})
}
}
return samples
}
func sendSamples(w writer, samples model.Samples) error {
begin := time.Now()
err := w.Write(samples)
duration := time.Since(begin).Seconds()
if err != nil {
failedSamples.WithLabelValues(w.Name()).Add(float64(len(samples)))
return err
}
sentSamples.WithLabelValues(w.Name()).Add(float64(len(samples)))
sentBatchDuration.WithLabelValues(w.Name()).Observe(duration)
return nil
}
// timeHandler uses Prometheus histogram to track request time
func timeHandler(path string, handler http.Handler) http.Handler {
f := func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
handler.ServeHTTP(w, r)
elapsedMs := time.Since(start).Nanoseconds() / int64(time.Millisecond)
httpRequestDuration.WithLabelValues(path).Observe(float64(elapsedMs))
}
return http.HandlerFunc(f)
}