mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
7f94a57908
Top level comments should end in a period Signed-off-by: Yug <yuggupta27@gmail.com>
28 lines
547 B
Go
28 lines
547 B
Go
package util
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
klog "k8s.io/klog/v2"
|
|
)
|
|
|
|
// 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)
|
|
}
|
|
}
|