Add port tag to apache plugin

This commit is contained in:
Ruslan Islamgaliev
2015-09-22 10:52:45 -07:00
committed by Cameron Sparr
parent 0700e0cf94
commit 5657e8d1da
+3 -5
View File
@@ -134,13 +134,11 @@ func (n *Apache) gatherScores(data string, acc plugins.Accumulator, tags map[str
// Get tag(s) for the apache plugin
func getTags(addr *url.URL) map[string]string {
h := addr.Host
var htag string
if host, _, err := net.SplitHostPort(h); err == nil {
htag = host
if host, port, err := net.SplitHostPort(h); err == nil {
return map[string]string{"server": host, "port": port}
} else {
htag = h
return map[string]string{"server": h, "port": "80"}
}
return map[string]string{"server": htag}
}
func init() {