mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
a81a3bf96b
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
28 lines
537 B
Go
28 lines
537 B
Go
package util
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
"k8s.io/klog"
|
|
)
|
|
|
|
// ValidateURL validates the url
|
|
func ValidateURL(c *Config) error {
|
|
_, err := url.Parse(c.MetricsPath)
|
|
return err
|
|
}
|
|
|
|
// StartMetricsServer starts http server
|
|
func StartMetricsServer(c *Config) {
|
|
addr := net.JoinHostPort(c.MetricsIP, strconv.Itoa(c.MetricsPort))
|
|
http.Handle(c.MetricsPath, promhttp.Handler())
|
|
err := http.ListenAndServe(addr, nil)
|
|
if err != nil {
|
|
klog.Fatalln(err)
|
|
}
|
|
}
|