Files
aperture/prometheus.go
Elle Mouton 9362f2325f multi: extract prometheus config and exporter
In this commit, the prometheus config is extracted from the hashmail
config so that it can be used more generally.
2022-02-10 09:41:35 +02:00

45 lines
1.4 KiB
Go

package aperture
import (
"fmt"
"net/http"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
// PrometheusConfig is the set of configuration data that specifies if
// Prometheus metric exporting is activated, and if so the listening address of
// the Prometheus server.
type PrometheusConfig struct {
// Enabled, if true, then Prometheus metrics will be exported.
Enabled bool `long:"enabled" description:"if true prometheus metrics will be exported"`
// ListenAddr is the listening address that we should use to allow the
// main Prometheus server to scrape our metrics.
ListenAddr string `long:"listenaddr" description:"the interface we should listen on for prometheus"`
}
// StartPrometheusExporter registers all relevant metrics with the Prometheus
// library, then launches the HTTP server that Prometheus will hit to scrape
// our metrics.
func StartPrometheusExporter(cfg *PrometheusConfig) error {
// If we're not active, then there's nothing more to do.
if !cfg.Enabled {
return nil
}
// Next, we'll register all our metrics.
// Finally, we'll launch the HTTP server that Prometheus will use to
// scape our metrics.
go func() {
log.Infof("Prometheus metrics http endpoint being served on "+
"%s", cfg.ListenAddr)
http.Handle("/metrics", promhttp.Handler())
fmt.Println(http.ListenAndServe(cfg.ListenAddr, nil))
}()
return nil
}