mirror of
https://github.com/lightninglabs/aperture.git
synced 2026-01-15 07:14:24 +01:00
55 lines
1.6 KiB
Go
55 lines
1.6 KiB
Go
package aperture
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
)
|
|
|
|
var (
|
|
// mailboxCount tracks the current number of active mailboxes.
|
|
mailboxCount = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
Namespace: "hashmail",
|
|
Name: "mailbox_count",
|
|
})
|
|
)
|
|
|
|
// 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.
|
|
prometheus.MustRegister(mailboxCount)
|
|
|
|
// 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
|
|
}
|