mirror of
https://github.com/tailscale/tailscale.git
synced 2024-12-04 15:35:38 +00:00
5836b3d8c1
This is causing problems with certain servers that have a lot of open FDs; the process collector that Prometheus provides generates a lot of garbage when enumerating open FDs, which is why we have metrics.CurrentFDs (which uses util/dirwalk). Updates tailscale/corp#19900 Signed-off-by: Andrew Dunham <andrew@du.nham.ca> Change-Id: I732f854e637c4d7a651b3c74cd8e363cb1092bcc
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package promvarz combines Prometheus metrics exported by our expvar converter
|
|
// (tsweb/varz) with metrics exported by the official Prometheus client.
|
|
package promvarz
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/common/expfmt"
|
|
"tailscale.com/tsweb/varz"
|
|
)
|
|
|
|
// OmitPromethusMetrics, if set to true, makes Handler not include native
|
|
// Prometheus metrics.
|
|
//
|
|
// This is useful in some specific cases where the built-in Prometheus
|
|
// collectors have poor performance characteristics.
|
|
var OmitPromethusMetrics bool
|
|
|
|
// Handler returns Prometheus metrics exported by our expvar converter
|
|
// and the official Prometheus client.
|
|
func Handler(w http.ResponseWriter, r *http.Request) {
|
|
if err := gatherNativePrometheusMetrics(w); err != nil {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
w.Write([]byte(err.Error()))
|
|
return
|
|
}
|
|
varz.Handler(w, r)
|
|
}
|
|
|
|
// gatherNativePrometheusMetrics writes metrics from the default
|
|
// metric registry in text format.
|
|
func gatherNativePrometheusMetrics(w http.ResponseWriter) error {
|
|
if OmitPromethusMetrics {
|
|
return nil
|
|
}
|
|
enc := expfmt.NewEncoder(w, expfmt.FmtText)
|
|
mfs, err := prometheus.DefaultGatherer.Gather()
|
|
if err != nil {
|
|
return fmt.Errorf("could not gather metrics from DefaultGatherer: %w", err)
|
|
}
|
|
|
|
for _, mf := range mfs {
|
|
if err := enc.Encode(mf); err != nil {
|
|
return fmt.Errorf("could not encode metric %v: %w", mf, err)
|
|
}
|
|
}
|
|
if closer, ok := enc.(expfmt.Closer); ok {
|
|
if err := closer.Close(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|