mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-14 15:27:47 -08:00
41c22effbe
With v0.16.0 Alertmanager introduced a new API (v2). This patch adds a configuration option for Prometheus to send alerts to the v2 endpoint instead of the defautl v1 endpoint. Signed-off-by: Max Leonard Inden <IndenML@gmail.com>
25 lines
494 B
Go
25 lines
494 B
Go
package swag
|
|
|
|
import (
|
|
"net"
|
|
"strconv"
|
|
)
|
|
|
|
// SplitHostPort splits a network address into a host and a port.
|
|
// The port is -1 when there is no port to be found
|
|
func SplitHostPort(addr string) (host string, port int, err error) {
|
|
h, p, err := net.SplitHostPort(addr)
|
|
if err != nil {
|
|
return "", -1, err
|
|
}
|
|
if p == "" {
|
|
return "", -1, &net.AddrError{Err: "missing port in address", Addr: addr}
|
|
}
|
|
|
|
pi, err := strconv.Atoi(p)
|
|
if err != nil {
|
|
return "", -1, err
|
|
}
|
|
return h, pi, nil
|
|
}
|