mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
e43ef0a979
Earlier this evening I tried to run the Go [modernize](https://pkg.go.dev/golang.org/x/tools/gopls/internal/analysis/modernize) analyzer on OPA. That didn't go as planned: - https://github.com/golang/go/issues/73661 - https://github.com/golang/go/issues/73663 While we wait for that to be fixed, I figured an old-fashioned search-and-replace across the repo may work for at least the `interface{}` to `any` conversion. That should help make it easier to see the other fixes as applied by the modernize tool once it has had those issues resolved. Signed-off-by: Anders Eknert <anders@styra.com>
220 lines
6.2 KiB
Go
220 lines
6.2 KiB
Go
// Copyright 2019 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package prometheus
|
|
|
|
import (
|
|
"bufio"
|
|
"encoding/json"
|
|
"fmt"
|
|
"math"
|
|
"net"
|
|
"net/http"
|
|
"runtime"
|
|
"strconv"
|
|
|
|
// Need to keep deprecated package for compatibility with prometheus/client_golang
|
|
"github.com/golang/protobuf/jsonpb" // nolint:staticcheck
|
|
"github.com/golang/protobuf/proto" // nolint:staticcheck
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
|
|
"github.com/open-policy-agent/opa/v1/metrics"
|
|
)
|
|
|
|
// Provider wraps a metrics.Metrics provider with a Prometheus registry that can
|
|
// instrument the HTTP server's handlers.
|
|
type Provider struct {
|
|
registry *prometheus.Registry
|
|
durationHistogram *prometheus.HistogramVec
|
|
cancellationCounters *prometheus.CounterVec
|
|
inner metrics.Metrics
|
|
logger loggerFunc
|
|
}
|
|
|
|
type loggerFunc func(attrs map[string]any, f string, a ...any)
|
|
|
|
// New returns a new Provider object.
|
|
func New(inner metrics.Metrics, logger loggerFunc, httpRequestBuckets []float64) *Provider {
|
|
registry := prometheus.NewRegistry()
|
|
registry.MustRegister(collector())
|
|
durationHistogram := prometheus.NewHistogramVec(
|
|
prometheus.HistogramOpts{
|
|
Name: "http_request_duration_seconds",
|
|
Help: "A histogram of duration for requests.",
|
|
Buckets: httpRequestBuckets,
|
|
},
|
|
[]string{"code", "handler", "method"},
|
|
)
|
|
registry.MustRegister(durationHistogram)
|
|
|
|
cancellationCounters := prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "http_request_cancellations",
|
|
Help: "A count of cancelled requests.",
|
|
},
|
|
[]string{"code", "handler", "method"},
|
|
)
|
|
|
|
registry.MustRegister(cancellationCounters)
|
|
return &Provider{
|
|
registry: registry,
|
|
durationHistogram: durationHistogram,
|
|
cancellationCounters: cancellationCounters,
|
|
inner: inner,
|
|
logger: logger,
|
|
}
|
|
}
|
|
|
|
// RegisterEndpoints registers `/metrics` endpoint
|
|
func (p *Provider) RegisterEndpoints(registrar func(path, method string, handler http.Handler)) {
|
|
registrar("/metrics/alloc_bytes", http.MethodGet, http.HandlerFunc(allocHandler))
|
|
registrar("/metrics", http.MethodGet, promhttp.HandlerFor(p.registry, promhttp.HandlerOpts{}))
|
|
}
|
|
|
|
// InstrumentHandler returned wrapped HTTP handler with added prometheus instrumentation
|
|
func (p *Provider) InstrumentHandler(handler http.Handler, label string) http.Handler {
|
|
durationCollector := p.durationHistogram.MustCurryWith(prometheus.Labels{"handler": label})
|
|
cancellationsCollector := p.cancellationCounters.MustCurryWith(prometheus.Labels{"handler": label})
|
|
return promhttp.InstrumentHandlerDuration(durationCollector, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
csrw := &captureStatusResponseWriter{ResponseWriter: w, status: http.StatusOK}
|
|
var rw http.ResponseWriter
|
|
if h, ok := w.(http.Hijacker); ok {
|
|
rw = &hijacker{ResponseWriter: csrw, hijacker: h}
|
|
} else {
|
|
rw = csrw
|
|
}
|
|
handler.ServeHTTP(rw, r)
|
|
if r.Context().Err() != nil {
|
|
cancellationsCollector.With(prometheus.Labels{"code": strconv.Itoa(csrw.status), "method": r.Method}).Inc()
|
|
}
|
|
}))
|
|
}
|
|
|
|
// Info returns attributes that describe the metric provider.
|
|
func (*Provider) Info() metrics.Info {
|
|
return metrics.Info{
|
|
Name: "prometheus",
|
|
}
|
|
}
|
|
|
|
// All returns the union of the inner metric provider and the underlying
|
|
// prometheus registry.
|
|
func (p *Provider) All() map[string]any {
|
|
|
|
all := p.inner.All()
|
|
|
|
families, err := p.registry.Gather()
|
|
if err != nil && p.logger != nil {
|
|
p.logger(map[string]any{
|
|
"err": err,
|
|
}, "Failed to gather metrics from Prometheus registry.")
|
|
}
|
|
|
|
for _, f := range families {
|
|
all[f.GetName()] = wrap{family: f}
|
|
}
|
|
|
|
return all
|
|
}
|
|
|
|
type wrap struct{ family proto.Message }
|
|
|
|
var marshaler = jsonpb.Marshaler{}
|
|
|
|
func (w wrap) MarshalJSON() ([]byte, error) {
|
|
s, err := marshaler.MarshalToString(w.family)
|
|
return []byte(s), err
|
|
}
|
|
|
|
// MarshalJSON returns a JSON representation of the unioned metrics.
|
|
func (p *Provider) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(p.All())
|
|
}
|
|
|
|
// Timer returns a named timer.
|
|
func (p *Provider) Timer(name string) metrics.Timer {
|
|
return p.inner.Timer(name)
|
|
}
|
|
|
|
// Counter returns a named counter.
|
|
func (p *Provider) Counter(name string) metrics.Counter {
|
|
return p.inner.Counter(name)
|
|
}
|
|
|
|
// Histogram returns a named histogram.
|
|
func (p *Provider) Histogram(name string) metrics.Histogram {
|
|
return p.inner.Histogram(name)
|
|
}
|
|
|
|
// Clear resets the inner metric provider. The Prometheus registry does not
|
|
// expose an interface to clear the metrics so this call has no affect on
|
|
// metrics tracked by Prometheus.
|
|
func (p *Provider) Clear() {
|
|
p.inner.Clear()
|
|
}
|
|
|
|
// Register register the collectors on OPA prometheus registry
|
|
func (p *Provider) Register(c prometheus.Collector) error {
|
|
return p.registry.Register(c)
|
|
}
|
|
|
|
// MustRegister register the collectors on OPA prometheus registry and panics when an error occurs
|
|
func (p *Provider) MustRegister(cs ...prometheus.Collector) {
|
|
p.registry.MustRegister(cs...)
|
|
}
|
|
|
|
// Unregister unregister the collectors on OPA prometheus registry
|
|
func (p *Provider) Unregister(c prometheus.Collector) bool {
|
|
return p.registry.Unregister(c)
|
|
}
|
|
|
|
type captureStatusResponseWriter struct {
|
|
http.ResponseWriter
|
|
status int
|
|
}
|
|
|
|
type hijacker struct {
|
|
http.ResponseWriter
|
|
hijacker http.Hijacker
|
|
}
|
|
|
|
func (h *hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) {
|
|
return h.hijacker.Hijack()
|
|
}
|
|
|
|
func (c *captureStatusResponseWriter) WriteHeader(statusCode int) {
|
|
c.ResponseWriter.WriteHeader(statusCode)
|
|
c.status = statusCode
|
|
}
|
|
|
|
func prettyByteSize(b uint64) string {
|
|
bf := float64(b)
|
|
for _, unit := range []string{"", "K", "M", "G", "T", "P", "E", "Z"} {
|
|
if math.Abs(bf) < 1000.0 {
|
|
return fmt.Sprintf("%3.1f%sB", bf, unit)
|
|
}
|
|
bf /= 1000.0
|
|
}
|
|
return fmt.Sprintf("%.1fYiB", bf)
|
|
}
|
|
|
|
func allocHandler(rsp http.ResponseWriter, req *http.Request) {
|
|
var m runtime.MemStats
|
|
runtime.ReadMemStats(&m)
|
|
|
|
total := m.HeapInuse + m.StackInuse + m.MCacheInuse + m.MSpanInuse
|
|
|
|
var alloc string
|
|
if req.URL.Query().Get("pretty") == "true" {
|
|
alloc = prettyByteSize(total)
|
|
} else {
|
|
alloc = strconv.FormatUint(total, 10)
|
|
}
|
|
|
|
rsp.WriteHeader(200)
|
|
_, _ = fmt.Fprintln(rsp, alloc)
|
|
}
|