1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00
ctrl/prometheus.go
2021-08-16 13:01:12 +02:00

49 lines
1.2 KiB
Go

package steward
import (
"fmt"
"net"
"net/http"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
// metrics are generally used to hold the structure around metrics
// handling
type metrics struct {
// The channel to pass metrics that should be processed
promRegistry *prometheus.Registry
// host and port where prometheus metrics will be exported
hostAndPort string
}
// newMetrics will prepare and return a *metrics
func newMetrics(hostAndPort string) *metrics {
m := metrics{
promRegistry: prometheus.NewRegistry(),
hostAndPort: hostAndPort,
}
return &m
}
// Start the http interface for Prometheus metrics.
func (m *metrics) start() error {
//http.Handle("/metrics", promhttp.Handler())
//http.ListenAndServe(":2112", nil)
n, err := net.Listen("tcp", m.hostAndPort)
if err != nil {
return fmt.Errorf("error: startMetrics: failed to open prometheus listen port: %v", err)
}
mux := http.NewServeMux()
mux.Handle("/metrics", promhttp.Handler())
err = http.Serve(n, mux)
if err != nil {
return fmt.Errorf("error: startMetrics: failed to start http.Serve: %v", err)
}
return nil
}