2021-02-18 11:29:14 +00:00
|
|
|
package steward
|
|
|
|
|
|
|
|
import (
|
2021-08-03 11:57:29 +00:00
|
|
|
"fmt"
|
2021-02-22 08:33:37 +00:00
|
|
|
"net"
|
2021-02-18 11:29:14 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
|
|
)
|
|
|
|
|
2021-02-19 15:58:16 +00:00
|
|
|
// metrics are generally used to hold the structure around metrics
|
|
|
|
// handling
|
2021-02-18 11:29:14 +00:00
|
|
|
type metrics struct {
|
2021-02-19 15:58:16 +00:00
|
|
|
// The channel to pass metrics that should be processed
|
2021-04-12 08:51:26 +00:00
|
|
|
promRegistry *prometheus.Registry
|
2021-02-22 08:33:37 +00:00
|
|
|
// 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
|
2021-02-22 08:33:37 +00:00
|
|
|
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-03 11:57:29 +00:00
|
|
|
func (s *server) startMetrics() error {
|
2021-02-18 11:29:14 +00:00
|
|
|
|
2021-02-22 08:33:37 +00:00
|
|
|
//http.Handle("/metrics", promhttp.Handler())
|
|
|
|
//http.ListenAndServe(":2112", nil)
|
|
|
|
n, err := net.Listen("tcp", s.metrics.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-02-22 08:33:37 +00:00
|
|
|
}
|
|
|
|
m := http.NewServeMux()
|
|
|
|
m.Handle("/metrics", promhttp.Handler())
|
2021-08-03 11:57:29 +00:00
|
|
|
|
|
|
|
err = http.Serve(n, m)
|
|
|
|
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
|
|
|
}
|