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

50 lines
1.2 KiB
Go
Raw Normal View History

2021-02-18 11:29:14 +00:00
package steward
import (
2021-08-03 11:57:29 +00:00
"fmt"
"net"
2021-02-18 11:29:14 +00:00
"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
2021-02-18 11:29:14 +00:00
type metrics struct {
// The channel to pass metrics that should be processed
2021-04-12 08:51:26 +00:00
promRegistry *prometheus.Registry
// host and port where prometheus metrics will be exported
hostAndPort string
2021-02-18 11:29:14 +00:00
}
2021-02-24 09:58:02 +00:00
// newMetrics will prepare and return a *metrics
func newMetrics(hostAndPort string) *metrics {
2021-02-18 11:29:14 +00:00
m := metrics{
2021-04-12 08:51:26 +00:00
promRegistry: prometheus.NewRegistry(),
hostAndPort: hostAndPort,
2021-02-18 11:29:14 +00:00
}
return &m
}
2021-08-16 11:01:12 +00:00
// Start the http interface for Prometheus metrics.
2021-08-04 08:37:24 +00:00
func (m *metrics) start() error {
2021-02-18 11:29:14 +00:00
//http.Handle("/metrics", promhttp.Handler())
//http.ListenAndServe(":2112", nil)
2021-08-04 08:37:24 +00:00
n, err := net.Listen("tcp", m.hostAndPort)
if err != nil {
2021-08-03 11:57:29 +00:00
return fmt.Errorf("error: startMetrics: failed to open prometheus listen port: %v", err)
}
2021-08-04 08:37:24 +00:00
mux := http.NewServeMux()
mux.Handle("/metrics", promhttp.Handler())
2021-08-03 11:57:29 +00:00
2021-08-04 08:37:24 +00:00
err = http.Serve(n, mux)
2021-08-03 11:57:29 +00:00
if err != nil {
return fmt.Errorf("error: startMetrics: failed to start http.Serve: %v", err)
}
return nil
2021-02-18 11:29:14 +00:00
}