Select default apache port depending on url scheme
This commit is contained in:
parent
05804230b4
commit
e1eb25abb0
|
@ -134,12 +134,19 @@ func (n *Apache) gatherScores(data string, acc plugins.Accumulator, tags map[str
|
||||||
// Get tag(s) for the apache plugin
|
// Get tag(s) for the apache plugin
|
||||||
func getTags(addr *url.URL) map[string]string {
|
func getTags(addr *url.URL) map[string]string {
|
||||||
h := addr.Host
|
h := addr.Host
|
||||||
if host, port, err := net.SplitHostPort(h); err == nil {
|
host, port, err := net.SplitHostPort(h)
|
||||||
return map[string]string{"server": host, "port": port}
|
if err != nil {
|
||||||
|
host = addr.Host
|
||||||
|
if addr.Scheme == "http" {
|
||||||
|
port = "80"
|
||||||
|
} else if addr.Scheme == "https" {
|
||||||
|
port = "443"
|
||||||
} else {
|
} else {
|
||||||
return map[string]string{"server": h, "port": "80"}
|
port = ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return map[string]string{"server": host, "port": port}
|
||||||
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
plugins.Add("apache", func() plugins.Plugin {
|
plugins.Add("apache", func() plugins.Plugin {
|
||||||
|
|
Loading…
Reference in New Issue